...
The Rule Builder walks you through three easy steps to define your condition and actions.
Condition
...
Wizard
Describe the conditions under which a set of actions should be executed. You can specify more than one condition in the same rule but you do not need a condition.
...
Function | Summary | Parameters |
---|---|---|
userFirstName | Used to retrieve the user's first name for the current user or for a specific userId. Returns the first name string. | userId - The optional userId of the user to get the first name for. This parameter an can be any text expression. If not supplied, then this function returns the first name for the current logged in user. |
userLastName | Used to retrieve the user's last name for the current user or for a specific userId. Returns the last name string. | userId - The optional userId of the user to get the last name for. This parameter an can be any text expression. If not supplied, then this function returns the last name for the current logged in user. |
userFullName | Used to retrieve the user's full name for the current user or for a specific userId. Returns the full name string. | userId - The optional userId of the user to get the full name for. This parameter an can be any text expression. If not supplied, then this function returns the full name for the current logged in user. |
userEmail | Used to retrieve the user's email for the current user or for a specific userId. Returns the email string. | userId - The optional userId of the user to get the email for. This parameter an can be any text expression. If not supplied, then this function returns the email for the current logged in user. |
userID | Used to retrieve the userID for the current user or for a specific userId. Returns the id string. | userId - The optional userId of the user to get the id for (typically not used). This parameter an can be any text expression. If not supplied, then this function returns the id for the current logged in user. |
userManagerID | Used to retrieve the user's manager's user ID for the current user or for a specific userId. Returns the manager user id string. | userId - The optional userId of the user to get the user's manager's user ID for. This parameter an can be any text expression. If not supplied, then this function returns the user's manager's user ID for the current logged in user. |
userDetail | Used retrieve individual information fields for the currently logged in user. These fields can either be one of the standard fields or a custom field configured using the (ldap) security provider. | fieldName - The name of the user information property to retrieve. This parameter an can be any text expression. The standard properties are 'id', 'first.name', 'last.name', 'email' and 'reports.to'. |
...