Workflows describe an automated method of performing daily or routine tasks. One task in particular is to automatically generate an email to a selected person or group of people. Workflows are internally driven and deployed when key events, such as hiring or terminating of an employee, occur.

Clients have the ability to set up workflows to send emails with direct links to a form within Self Service to end users and candidates. This can be done via an Email Type workflow action.

We suggest that the Workflow documentation is reviewed prior to setting up workflow to email URL links.


  1. Can be applied to both Candidate Self Service and Employee/Manager Self Service
  2. The URL link may or may not contain the last name and person/candidate code. Due to security reasons, the link cannot be formatted to include the pin number.
  3. The user is forced to login after which they are directed to the form specified in the URL.
  4. In addition to the form name, key information can be specified so the users are led directly to a specific record within the form. For example, you can set up a link to have a user directed to a specific posting or assessment.
  5. The key information is the foreign key and row id of the item you wish to find.
    For example, on WCRPO, the posting foreign key ID (represented by RPO) and the specific posting is identified by the row id number in the database, which can be found in Personality by clicking on the Show Audit Details icon within the form.
  6. The execution rights for forms are respected.
  1. Create an Email Type workflow action
    EmailWorkflowLinks_01.jpg(info)
  2. Create a UserCalc to call the workflow action.
    EmailWorkflowLinks_02.jpg(info)
The link is placed in the Description section associated with an ACT command (Initiate Workflow Action) in a UserCalc, along with other text that would be placed in such an email.

An Employee Self Service link with a specified form:
<html> <a href="http://servername.domain/selfServiceADF/faces/ssLogin?FORM=WEPTE">Click Here</a> </html>

An Employee Self Service link with a specified form with key information (Ie Timesheet #):
<html> <a href="http://servername.domain/selfServiceADF/faces/ssLogin?RECORD_ID=<<v_pts_id>>&FORM=WEPTE">Click Here</a> </html>

A Public Form:
<html> <a href="http://servername.domain/selfServiceADF/faces/ssPublicForm?FORM=WPECI ">Click Here</a> </html>

Candidate Self Service link with a specified form:
<html> <a href="http:// servername.domain/selfServiceADF/faces/ssCandidateLogin?FORM=WCRPO ">Click Here</a> </html>

Candidate Self Service with specific form and records:
<html> <a href="http:// servername.domain/selfServiceADF/faces/ssCandidateLogin?RPO=777&FORM=WCRPO">Click Here</a> </html>


Click to create a new notes page