Examples of Overriding SYSIN Paramters
You can override any SYSIN parameters through PARM definitions.
The following examples shows how to override the SYSIN parameters through PARM definitions.
Example 1: override the Fusion1 server to specify an activity type of SEND and a new remote file name
//STEP0001 EXEC PGM=OSIUB000, // PARM=('SERVER=FUSION1,SEND,', // 'REMOTE_FILE=C:\FUSION TEST\TEST OVERIDE.1')
Example 2: override the FUSIONA server through SNA to specify different local and remote file names and a different node name
//STEP0001 EXEC PGM=OSIUB000, // PARM=('SERVERNAME=SERVALU,ACBNAME=FUSN,', // 'DSN=LOCAL.OS390.FILE,', // 'REMOTE_FILE=C:\REMOTE FILE,NODE=MYNODE')
Example 3: override the server through TCP to specify a different IP address and IP port for a transfer
//STEP0001 EXEC PGM=OSIUB000, // PARM=('SERVIPADDR=10.10.12.5,TCPIPJOBNAME=TCPIP,', // 'IPADDR=10.10.13.12,IPPORT=47000')
Example 4: override information on a transfer request when the initiator has no access or authorization to the data set pointed to by the SYSIN DD statement.
You must set a process called FUSBATCH in a PROCLIB that includes the PARM override call PARMDATA:
//STEP0001 EXEC FUSBATCH,PARMDATA=‘NODE=LANODE,DSN=LOCAL.DSN,RUSER=OPER1, PASS=MYPASS’
The following example shows the PARM filed definition:
// EXEC PGM=OSIUB000,PARM='SERVER=FUSIONA,&PARMDAT'