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 FUSPROF. The parameter field is used to define the name of the platform server started task. The only required parameter is SERVER=, which defines the name of the platform server STC. |
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. |
Copyright © Cloud Software Group, Inc. All rights reserved.