The GroupMember module
PR 20672 Parametrics can prompt the user to locate group members. See LocateGroup and LocateGroups in the new GroupMember module . (v7.3)
To get help on the GroupMember module, you can use the SDS2 Python Prompt and the built-in Python functions dir() and help() :
SDS2 Python Prompt |
>>> import GroupMember # import the module
GetGroups(...)
>>> help(GetGroupsForMember) # get help on GetGroupsForMember
GetGroupsForMember(...)
>>> help(LocateGroup) # get help on LocateGroup
LocateGroup(...)
>>> help(LocateGroups) # get help on LocateGroups
LocateGroups(...)
|