How can we allocate dynamic steplib?
Release: 14.0
Three ways to code dynamic steplib:
1. 8,'CMD(ADSSP203) NEWAPPL(ISR)'
2. 8,'PGM(ADSSP202) PARM(ADSSP044) NEWAPPL(ISR)'
3. Tailoring the isp*lib to logon proc.
There are two more ways:
4. Insert the DATACOM load libraries into the steplib of the logon procedure.
5. we added the DATACOM load libs to the initial CLIST, that is pointed by:
in the tso proc:
//TSOASM EXEC PGM=IKJEFT01,DYNAMNBR=256,PARM=ISPPDF
//SYSPROC DD DISP=SHR,DSN=CPAC.CMDPROC
in ISPPDF :
ALLOC FI(ISPLLIB) SHR DA( +
'SYS1.DFSMS.DFQLLIB'
'SYS1.DATACOM.V151.CAAXLOAD'
'SYSV.DATACOM.V151.CUSLIB'
'SYS1.DFSMS.DFQLLIB'
'SYS1.DFSMS.DGTLLIB')