Skip to Content
Custom Search

FTP target file with date and time qualifier

1 reply [Last post]
Anonymous

I am trying to ftp a file from mainframe to wintel server, I am using a JCL to transfer the file.

The requirement is to have name of the target file unique each time transfer occurs, for this I plan to append the date and time as suffix to the file name, so that the file name generated each time is unique.

"; ; ; ;

The following is the JCL that I am using.

 

//FTPSTEP EXEC PGM=FTP
//SYSPRINT DD SYSOUT=*
//INPUT DD *
ip address
m/f user id
m/f password
put 'Source_file' Target.file.YYMMDD.HHMMSS
quit. /*
//OUTPUT DD SYSOUT=*

 

Can someone help me in meeting the above requirement?

Sponsored Listing
Anonymous
Use symbol translator to create the target file name

You can make use of symbol translator to create the target file name with date and time appended. For this
you first create the ftp input card using the symbol translator and then use the same ftp card in the
subsequent step to ftp the file.

 

//SYMBOLT  EXEC PGM=EZACFSM1                                       
//SYSIN    DD   *
put 'Source_file' Target.file.&LYYMMDD.&LHHMMSS
quit
/*
//SYSOUT   DD   DSN=&&TEMP,DISP=(,PASS),                     
//         RECFM=FB,LRECL=80
//*

//FTPSTEP EXEC PGM=FTP
//SYSPRINT DD SYSOUT=*
//INPUT DD *
ip address
m/f user id
m/f password
//         DD   DSN=&&TEMP,DISP=(OLD,DELETE)                         
/*
//OUTPUT DD SYSOUT=*

Click the +1 button  below to share it with your friends and colleagues

 

Share this if you liked it!

 

Disclaimer



Who's online

There are currently 1 user and 38 guests online.

Online users

  • siteadmin
Dr. Radut | forum