Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compressed Changeman Compilation Listing

Status
Not open for further replies.

ttmike07

MIS
Apr 7, 2007
2
US
Could someone share (with example) how to use SERCOPY in a REXX program to EXPAND - Compressed Changeman Compilation Listing?
Thanks
 

How would you use it outside REXX ?


Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Here is the batch jcl -

//JSTEP010 EXEC PGM=SERCOPY,
// PARM=('EXPAND,MEMBER(PAN82061)')
//STEPLIB DD DSN=CHGMAN.CMNZMF.LOAD,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=CMNSTAGE.AAA0.#015546.LST,DISP=SHR
//SYSUT2 DD DSN=PXP215.TEST.COMPLIST,
// DISP=(NEW,CATLG,CATLG),
// UNIT=SYSDA,SPACE=(CYL,(20,20),RLSE),
// DCB=(LRECL=133,RECFM=FBA)

Thanks
 
OK. Allocate SYSUT1 and ~2, LIBDEF CHGMAN.CMNZMF.LOAD in as ISPLLIB, SELECT PGM(SERCOPY)...

You'll have to check the ISPF manuals to see how to pass parms.


Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top