Script Function: Checks a user's membership status within a user group
Syntax
IS_GROUP_MEMBER (User, UserGroup)
Syntax |
Description/Format |
---|---|
User |
Name of a User object |
UserGroup |
Name of a UserGroup object |
Return codes |
---|
"1" - The user is a member of the
user group |
Comments
The membership status of a user within a user group may be checked using this script function. Both must be in the clientEnvironnement indépendant pour la création et l'exécution d'objets dans un système AE. Le nom d'un client est un nombre de quatre chiffres à saisir lors de la connexion d'un utilisateur au système AE. Les utilisateurs et leurs droits y sont aussi définis.Egalement un type d'objet distinct dans l'Automation Engine. in which this script function is called.
Example
In this example, the membership status of "BU/AE" within the user group "ADMIN" is tested. The result is written out in the activation report.
:SET &USGR# =
"ADMIN"
:SET &MEMBER# = IS_GROUP_MEMBER("BU/AE", &USGR#)
:IF &MEMBER# = 1
: PRINT "Member in &USGR#"
:ELSE
: PRINT "No member in &USGR#"
:ENDIF
See also:
About Scripts
Script Elements - Alphabetical Listing
Script Elements - Ordered by Function