Paul, Thanks for the reply and the followup. Thanks for the _metaperson reminder. I will check into it. Not sure however that it is an option since, I believe, two users can have the same value. In answer to your other question, this is code that will be run nightly (as part of a job stream that will have the credentials defined) and it is used as the input to a process to build a complex table structure for a work flow process that will be managed by a set of stored processes. So I really need a unique key. But perhaps one of the object id values can be used. Definitely something for me to check into. And there are no custom repositories and I don't need to get indirect groups. So this should work (I've marked you answer above as correct, BTW). Also, good point about the variability of _metauser. The current project is Unix, so it is not an issue. I usually handle this by defining a very simple utility macro to handle this, e.g.,: %macro metaUser; %lowcase(%sysfunc(coalesceC(%scan(&_metauser,2,\),&_metauser))) %mend metaUser; and I simply use %metauser instead of &_metauser.
... View more