Start of change

Example 11: Using the NO_FTP option

The following JCL invokes the AMAPDUPL program to compress and separate the file into chunks that can be brought to IBM for documentation. File H44IPCS.WESSAMP.TRKS055K will be compressed and stored into several files at:
/u/nickj/pduu/12345.123.123.WESSAMP.BIGFILE.Txxxxx.MTFTP.Fnnnnn
Figure 1. Using the NO_FTP option
//FTP     EXEC PGM=AMAPDUPL
//SYSPRINT DD  SYSOUT=*
//SYSTSPRT DD  SYSOUT=*
//SYSUT1   DD  DISP=SHR,DSN=H44IPCS.WESSAMP.TRKS055K
//SYSIN    DD  *
NO_FTP=Y
TARGET_DSN=WESSAMP.BIGFILE
WORK_DSN=WES.FTPOUT
WORK_DSN_SIZE=500
DIRECTORY=/u/nickj/pduu/
PMR=12345.123.123
The following files will be stored on your local systems directory:
/u/nickj/pduu/:
 12345.123.123.WESSAMP.BIGFILE.TE3246.MTFTP.F00002
 12345.123.123.WESSAMP.BIGFILE.TE3246.MTFTP.F00003
 12345.123.123.WESSAMP.BIGFILE.TE3246.MTFTP.F00004
 ...
 12345.123.123.WESSAMP.BIGFILE.TE3246.MTFTP.F001
End of change