Originally posted by: SystemAdmin
The map ddname specified in the RUN must match the map name specified in the JCL
A map can be coded in JCL in any of the
following three ways:
1.
//REVERSE DD DSN=DTX.MAPSEQ,DISP=SHR
The RUN identifies the map by its ddname
e.g RUN ("REVERSE",....)
2.
//REVERSE DD DSN=DTX.MAPPDS(DTXBMMVS),DISP=SHR
The DD statement identifies the map as a member of
a PDS and the RUN identifies the map by its ddname:
e.g RUN ("REVERSE",....)
3.
//MAPLIB DD DSN=DTX.MAPPDS,DISP=SHR
The DD statement identifies the PDS only and the member
name is identified on the Run in parentheses
following the ddname that identifies the PDS:
e.g. RUN ("MAPLIB(DTXBMMVS)",....)
Note: if you code RUN ("reverse.mmc") this will be converted to a DD name "REVERSE"
and that dd name will be opened as the map file. You can specify DD name with either option 1 or 2.
#IBMSterlingTransformationExtender#DataExchange#IBM-Websphere-Transformation-Extender