I'm trying to create a report that displays a users' UID along with their default groups' GID, and having some trouble with the DFLTGRP part. How can that be accomplished?
Below is to obtain the GID:
newlist type=RACF pl=0 retain notempty
select class=group segment=omvs
sortlist key(8,"Group") gid(10,num)
However, I'd like to get only the GID segment for the users' default group, and display blank if there is none.
Same with the UID:
newlist type=RACF pl=0 retain notempty
select class=user segment=omvs
sortlist key(8,"UserID") uid(10,num)
Effectively would like to merge these two, but only for DFLTGRPs where groups are concerned.
Thanks in advance!
------------------------------
Adam Klinger
------------------------------