5 pts.
 Preventing banner page of reports from printing on AS400 printers
How do you disable banner and/or header pages from printing on AS400 printers

Software/Hardware used:
ASKED: September 6, 2012  6:12 PM
UPDATED: September 6, 2012  6:19 PM

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Separator pages are usually attributes of the outq. You can create an outq that doesn’t add them to your output, or you can modify an existing outq:
 

CHGOUTQ OUTQ( mylib/myoutq ) JOBSEP(0)

 There is a second outq attribute that might also be involved. If the previous change doesn’t do what you need, try this:
 

CHGOUTQ OUTQ( mylib/myoutq ) SEPPAGE(*NO)

 One or the other of those, or both together, should work. If not, then more information will be needed.
 
Tom

 108,055 pts.