Difference between revisions of "UTA Workflows and the Password Variables"

From SmartWiki
Jump to: navigation, search
Line 6: Line 6:
 
   
 
   
  
==[[Workflow]] Task Type: [[UTA]] Assignment==
+
==[[Workflow]] Type: [[UTA]] Assignment==
 
   
 
   
 
'''@password@'''
 
'''@password@'''

Revision as of 12:51, 26 September 2013

Different password variables can be used depending on the workflow task type.

UTA Assignment task type uses @password@

The Acknowledgment task type uses @randompassword@ or @checkactivatedpassword@


Workflow Type: UTA Assignment

@password@

adds UTA role assigned to the user as a system role on the user's profile

checks if the user is activated

  • if the user is not activated then generates a new random password
  • if the user is activated then sends the text "current password"

For example

The user is assigned to a UTA Level 1 with the role of "Project Lead" and a workflow message has the following content:

Password is: @password@
  • The role of "Project Lead" is added to the user's profile
  • If the user is not activated then the system sends:
Password is: ABCDEFGH [a new, randomized password]
  • If the user is activated then the system sends:
Password is: current password


Workflow Task Type: Acknowledgement

@randompassword@

@checkactivatedpassword@

checks if the user is activated

  • if the user is not activated then generates a new random password
  • if the user is activated then sends the text "existing password" (see Notes below)

For example

The user is assigned to a UTA Level 1 with the role Project Lead and a workflow message has the following content:

Password is: @password@
  • Project Lead system role is added to the user's profile
  • If the user is not activated then the system sends:
Password is: ABCDEFGH [a new, randomized password]
  • If the user is activated then the system sends:
Password is: current password

Notes

Translation

Because of the complex nature of the password creation and validation process it is not possible to automatically translate existing password into other languages. If you are sending an e-mail containing the @checkactivatedpassword@ variable you can use the following syntax to display text other than "existing password" if required.

For example, for an existing user the following will show the French translation of existing password which is Mot de passe courant. If the user has not been previously activated the syntax will provide a randomly generated password as normal:

<!--@sscalculation(if(trim("@checkactivatedpassword@")="existing password","Mot de passe courant","@checkactivatedpassword@"))-->


See Also