We have different Environments on our Productions system with separate Journals and their corresponding Journal Receivers. Using a CL Program i want to retrieve the Journal Receiver Attributes of all the curently attached Journal Receiver in the system.
Software/Hardware used:
AS/400 V5R4, iSeries 570 POWER 6
ASKED:
October 14, 2010 9:27 AM
UPDATED:
October 16, 2010 9:15 AM
The APIs might be best in the long term. But maybe all you need is a simple file that lists your receivers:
DSPOBJD OBJ( mylib/*ALL ) OBJTYPE( *JRNRCV ) OUTPUT( *OUTFILE ) OUTFILE( QTEMP/MYRCVR )You can specify a generic name instead of *ALL. That can help if you have two or more sets of receivers in the same library.
Tom