version 3
User in group (user; group) Boolean
Parameter | Type | Description | |
user | String | User name | |
group | String | Group name | |
Function result | Boolean | TRUE = user is in group | |
FALSE = user is not in group |
Description
User in group returns TRUE if user is in group.
Example
The following example searches for specific invoices. If the current user is in the Executive group, he or she is allowed access to forms that display confidential information. If the user is not in the Executive group, a different form is displayed:
QUERY([Invoices];[Invoices]Retail>100) If (User in group(Current user;"Executive")) OUTPUT FORM([Invoices];"Executive Output") INPUT FORM([Invoices];"Executive Input") Else OUTPUT FORM([Invoices];"Standard Output") INPUT FORM([Invoices];"Standard Input") End if MODIFY SELECTION([Invoices];*)
See Also