I'm intending to setup variable input for a given ddname using symbolics, as follows
//SYSIN DD &inpt01
Just wonder if it possible to break lines in a string and perform continuation to achieve it in case I have multiple datasets, for instance:
// SET inpt01='DISP=SHR,DSN=FILE01' <= Line breaker would go here.
'// DISP=SHR,DSN=FILE02'
'// DISP=SHR,DSN=FILE02'
in order to have
//SYSIN DD DISP=SHR,DSN=FILE01
// DISP=SHR,DSN=FILE02
// DISP=SHR,DSN=FILE02
Thanks in advance.