|
Creating an Out Queue
Enter this on the command line: CALL QCMD <Enter> (This will give you 4 command lines so you can copy and paste the next 4 lines)
CRTOUTQ OUTQ(QUSRSYS/SHIPPING) RMTSYS(*INTNETADR) RMTPRTQ(RAW1) AUTOSTRWTR(1) CNNTYPE(*IP) DESTTYPE(*OTHER) MFRTYPMDL(*IBM42081) INTNETADR('192.168.0.84') SEPPAGE(*NO) DESTOPT('XAUTOQ XAIX') USRDFNOPT(*IBMSHRCNN) TEXT('Printer01')
Note: DESTOPT('XAUTOQ XAIX') is used to support number of copies for an outq
Change the value for OUTQ(QUSRSYS/SHIPPING) to the library and name you want to call printer (Use WRKOUTQ to see the current libraries/printers).
Change the value for RMTPRTQ(raw1) to the Remote Printer Queue (RMTPRTQ) value obtained from this link: RMTPRTQ
Change the value for MFRTYPMDL(*IBM42081) to the Manufacturer type and model (MFRTYPMDL) value obtained from this link: MFRTYPMDL
Change the value for INTNETADR('192.168.0.84') to the printers IP address.
Change the value for TEXT('Printer01') to your description of the printer.
|