×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
It's fairly simple. You copy your spool file to disk using cpysplf making sure
you have CTLCHAR(*FCFC) in the command. Then you do and OVRPRTF to the printer
file name, specifying the outq device you want it to go to, and then do a cpyf
of the saved file name to the Printer filename you would like, such as qsysprt.
A Snip-it would be. (Put what's necessary in the variable parameters.)
CPYSPLF FILE(&FILE) TOFILE(PRINTED) JOB(&JOB) +
SPLNBR(*LAST) CTLCHAR(*FCFC)
OVRPRTF FILE(QSYSPRT) PAGESIZE(&PAGLGT &PAGWDT) +
LPI(&LPI) CPI(&CPI) RPLUNPRT(*YES) +
CTLCHAR(*FCFC) CHLVAL(*NORMAL) +
PRTTXT(&NAME) OUTQ(&DEVICE) +
HOLD(*NO) USRDTA(&INIT)
CPYF FROMFILE(MTLR7LIB/PRINTED) TOFILE(QSYSPRT)
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.