|
The SWSDECON FunctionRelated Topics
The REXX-language SWSDECON built-in function can be used to de-concatenate a single ddname that was previous concatenated using the SWSCONCT built-in function to concatenate the DDNames. Note: Because of comparable functionality of SWSDECON to IBM's DECONCAT function, this documentation is similar to IBM's TSO/E online help.
SWSDECON SyntaxThe format of this command is similar in features and functions to the TSO/E DECONCAT command. If an error occurs, the REXX variable, ALLOC.MESSAGE, will be populated with a descriptive message. The DAIR return code may be obtained from ALLOC.INFOCODE and the reason code may be obtained from the ALLOC.REASON. The general form for a REXX-language invocation of SWSDECON is: rc = SWSDECON("STRING")
SWSDECON ExamplesTo de-concatenate a ddname rc = SWSDECON(DDN(INFILE1)) |