Workflow Soluiton

 View Only
  • 1.  Assigning Service Desk Groups in Custom Workflow

    Posted Sep 30, 2013 09:53 AM

    I am looking for articles, videos, any kind of documentation on how to use search for user/group and use that to assign a task to. I created a custom workflow that I would like to utilize this feature but I am unable to get the assignments to work. Any help would be appreciated.



  • 2.  RE: Assigning Service Desk Groups in Custom Workflow

    Posted Nov 07, 2013 04:18 PM

    For the search, you could emulate the functionality that the SD.Feeder.TechnicianIncidentForms workflow uses.   For assignments you can do it one of two ways.  You can either assign it using the Assignments section in the Dialog Workflow component.  To be honest, I can't remember if it's the Group ID or the group name that you would populate in this field.   Otherwise you could do it using the AddTaskAssigment component.   The mapping definition for the component is:

    AssignmentDate: Process Mapping using the Get Current Date component.
    ReferenceID: Mapped to the group's ID
    ReferenceName: Mapped to the group's name
    ReferenceType: Set to Group
    TaskAssignmentID: Process Mapping using the Create Globally Unique Value component
    TaskID: Set to workflowTaskId variable (This is usually set in the Dialog Workflow component)

    With the last example, I've put this component in the Start Process model under the Dialog Workflow component's Event Configuration tab.   This way I could use the workflowTaskId variable.

    Hope this helps.