|
The only thing I can suggest is to display object descriptions to an output
file as follows:
DSPOBJD OBJ(QSYS/*ALL)
OBJTYPE(*CMD)
DETAIL(*FULL)
OUTPUT(*OUTFILE)
OUTFILE(YourLib/QSYSCMDS)
Create a query over this file selecting any record where field ODUMOD = '1'
The resulting list will show you all commands that were marked as user
modified.
I've read that this particular field attribute isn't consistently set by
IBM. However, it can be used to determine such things as when the CHGCMDDFT
command was used against a command.
If you specify OBJTYPE(*ALL) the list will include all object types and you
will see things such as user message queues, profiles, libraries and device
description too. ==================================
MORE INFORMATION ON THIS TOPIC
==================================
The Best Web Links: tips, tutorials and more.
Ask your OS/400 questions--or help out your peers by answering them--in our live OS/400 discussion forums.
Ask the Experts yourself: Our OS/400 gurus are waiting to answer your questions.
|