JCL Statements
You can use JCL statements to perform batch jobs and queue file transfers.
Required JCL Statements
//OSIUB000 EXEC PGM=OSIUB000,PARM='SERVER=FUSION' //STEPLIB DD DISP=SHR,DSN=FUSION.LOADLIB //SYSPRINT DD SYSOUT=* //SYSIN DD *
The following table lists the required JCL statements:
Statement | Description |
---|---|
EXEC PGM=OSIUB000,PARM='data' | Defines the program that must be executed to run the batch interface.
The PARM parameter defines the name of the platform server started task. You can also use the PARM parameter to override any SYSIN parameters. For more information, see Appendix G. Overriding JCL SYSIN Parameters. |
STEPLIB | Defines the library that contains the platform server load modules. |
SYSPRINT | Defines the output report file that records the parameters that are used for the file transfer.
If the file is successfully queued, you can read the output report file and find out the transaction number assigned to the job. |
SYSIN | Defines the input file that records which file to transfer and to where to send the parameters that govern file transfer activities. |
Optional JCL Statements
The following table lists the optional JCL statements:
Statement | Description |
---|---|
FUSCFG | Defines the configuration file that defines the server name, IP address, IP name, or LUName of the started task.
For more information on FUSCFG configuration, see "Defining and Configuring the FUSCFG File" in the TIBCO® Managed File Transfer Platform Server for z/OS Installation and Operation Guide. |