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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

compare printer files

Status
Not open for further replies.

os400

MIS
Mar 20, 2003
129
0
0
US
I have a need to compare printer files from 2 iSeries boxes. I'm looking at a hundred or more printer files. Is there a way to do this? There is no *outfile parameter that i'm aware of.


TIA

Mike Butler
Iseries Guy -> PC's gone, SUNs gone - WooHoo
"Never put off 'til tomorrow what you should have done yesterday
 
I am assuming you are trying to compare iSeries objects of type *FILE and attribute *PRTF vs. spooled output sitting in an output queue.
The following command will create a file of *PRTF attributes:
Code:
DSPFD FILE(*ALL/*ALL) TYPE(*SPOOL) OUTPUT(*OUTFILE) FILEATR(*PRTF) OUTFILE(QTEMP/PRTF01)
The TYPE parameter may need to be changed depending on the information needed (unfortunately, *ALL is not an option for OUTPUT(*OUTPUT). Hope this is what you are looking for.
And, assuming you can get the generatd file to one of the two boxes, you should be able to do a CMPPFM command to compare the two systems.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top