For the initial values of text or number filter fields, you can also use Juel expressions. Process expressions Expression | Description |
---|
${<Datapool_Field>} | Any data pool field from the process map, for example, ${Person_FirstName}. |
User expressions Expression | Description |
---|
${user.id} | Unique user id | ${user.name} | User login name, i.e. 'jsmith' | ${user.fullName} | User full name, i.e. 'Johnny Smith' | ${user.ipAddress} | IP address of the user | ${user.<Datapool_Field>} | Any data pool field related to the user, if the user data comes from a data pool, that is, ${user.Person_LastName} returns 'Smith'. This expression may be used only in conjunction with CoreObject based authentication. |
System Property expressions These expressions are replaced by specific values which are configured in Identity Manager Admin. The names of the properties are found in the database in Property.name. Expression | Description |
---|
${sysprop.<property>} | The value of a system property. Replace the placeholder <property> with the name of a systemProperty which can be found in the database table Property. |
|