There is a way to change the attributes of a spool file, such as the Characters-Per-Inch value, that is already on the output queue. Here is an example of how you would change from 10 CPI to 15.
1. Create a physical file to receive a copy of the spool file: CRTPF FILE(*curlib/spl001) + RCDLEN(133) 2. Copy the spool file to the created physical file with "First Character Form Control (*fcfc)": CPYSPLF FILE(spool file) + TOFILE(*curlib/spl001) + JOB(number/userid/job) + CTLCHAR(*fcfc) 3. Override QSYSPRT to the new CPI and specify control character "*fcfc": OVRPRTF FILE(qsysprt) + CPI(15) + CTLCHAR(*fcfc) 4. Copy the saved spool file to QSYSPRT: CPYF FROMFILE(spl001) + TOFILE(qsysprt)
Alon Fluxman Highlands Ranch, Colorado
LATEST COMMENTS
MC Press Online