User Profile Sample JCL
The USERPROF member of the Platform Server JCL library shows the JCL required to execute the Platform Server user profile program to add, delete, or list user profiles.
See the following sample user profile JCL:
//USERPROF JOB 555,'JOHN USER',MSGCLASS=X,REGION=1M
//*
//********************************************************************
//* This is a sample of how the MFT Platform Server administrator can
//* ADD, DELETE, and LIST MFT Platform Server User Profiles.
//********************************************************************
//*
//FUSPROF EXEC PGM=FUSPROF,
// PARM='SERVER=FUSION' <<== Point to MFT Platform Server
//*
//STEPLIB DD DISP=SHR,DSN=FUSION.LOADLIB
//SYSUDUMP DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
**********************************************************************
TYPE=ADD ADD profile for the local user
REMOTE_USER=RUSER1
REMOTE_PASS=password
IPNAME=NTSERV.YOURCOMPANY.COM
*
TYPE=DELETE DELETE profile for a remote user
NODE=NODE1
REMOTE_USER=RMTUSER1
RESPONDER=YES
*
TYPE=LIST LIST all profiles for IPNAME
IPNAME=NTSERV.YOURCOMPANY.COMSee the following table for the required JCL statements.
| Statement | Description |
|---|---|
| EXEC PGM=FUSPROF,PARM=SERVER=XXXXX | Defines the program that must be executed to run the Platform Server user profile interface.
The program name must be
The only required parameter is
|
| STEPLIB | Defines the library that contains the Platform Server load modules.
This statement must be included to identify the Platform Server load library. |
| SYSPRINT | Defines the output report that shows what parameters are used for file transfer.
If the file is successfully queued, then this report reveals what transaction number is assigned to the job. |
| SYSIN | Defines the input file that shows the user what file to transfer and where to send any other parameter that governs a file transfer activity. |