To continue reading for free, register below or login
To read more you must become a member of SearchDataCenter.com
');
// -->

It sounds like the defaults are different on the "test box" (is
this a different LPAR than the production mainframe you mention?)
and the production mainframe. There are defaults that come with
the system and they are customizable by the system programmer.
There is a somewhat complicated search order for where these
defaults can be specified or overridden by the user (see the
manuals I quote below for details), but they are in a file called
FTP.DATA or FTPSDATA. The default LRECL is 128 and the default
RECFM is VB if the system programmer does not change any of the
defaults. The file also controls things like the default space
allocation size and type (trk vs.cyl) and whether the default
FTP environment is z/OS MVS or z/OS Unix.
The best way to ensure you always get the file format you want
is to use the SITE or LOCSITE commands prior to issuing a
GET or PUT in your FTP process. If you are doing a GET from the
mainframe you would use LOCSITE prior to the GET. If you were
doing a PUT from another platform to the mainframe, you would
use the SITE command - which you need to send via "QUOTE SITE".
Here is an example of doing a GET from an FTP batch job on the
mainframe (assume the server is at 172.19.158.100):
//FTP JOB (ACCT),CLASS=A,...
//STEP1 EXEC PGM=FTP,REGION=4M,PARM='(EXIT'
//SYSPRINT DD SYSOUT=*
//OUTPUT DD SYSOUT=*
//INPUT DD *
172.19.158.100
userid
password
locsite LRECL=80 BLKSIZE=27920 RECFM=FB
locsite CYL PRIMARY=100 SECONDARY=20
binary
get /dir1/dir2/mydata.bin 'USERID.MY.DATA'
quit
/*
For more information on using FTP on z/OS see:
IP User's Guide and Commands -
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B920/
For more information on customzing FTP on z/OS see:
IP Configuration Reference -
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B420/
IP Configuration Guide -
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B320/
|