Hello thank you for your answer.
Script works, BUT just give me one group of the folder,if folder has more than one group does not show on the output
something like this is missing but i could no performe for folders, this is from person example
/* If this person does not belong to any groups, set their group */ /* variable to 'No groups' and output the name. */ if grpassn in (-3,-4) then do; group="No groups"; output; end;
/* If the person belongs to any groups, loop through the list */ /* and retrieve the name of each group, outputting each on a */ /* separate record. */ else do while (grpassn > 0); rc2=metadata_getattr(groupuri, "Name", group); a+1; output; grpassn=metadata_getnasn(uri,"IdentityGroups",a,groupuri); end;
Thanks for your help
... View more