Free cookie consent management tool by TermsFeed Setting Up Automated Case Routing Module [nil]
Setting Up Automated Case Routing Module

Introduction

After installing the Automated Case Routing module, you need to set it up before using it with the Case Management Studio Base application. This guide walks you through the setup steps, which include:

  1. Login to the target environment.
  2. Navigate to the Appian Designer.
  3. Navigate to CMGT Case Management Studio Base application.
  4. Search for and open the CMGT_Role record type.
  5. Create a relationship to CMGT_ACR_CaseAssignmentHistory using the following settings:
    • Relationship Name: Enter acrCaseAssignmentHistory.
    • Relationship Type: Select the One to One relationship type.
    • CMGT_Role: Select roleId - Number (Integer) in the drop down.
    • CMGT_ACR_CaseAssignmentHistory: Select roleId - Number (Integer) in the drop down.
    • Write and Delete Related Records: Select Write or Delete Case Assignment Histories when modifying Roles.

      cms_acr_case_assignment_history_record_relationship

  6. Click ADD and save the record type.
  7. Search for and open the CMGT_ACR_EVAL_returnAssignmentHistoryForRoles rule.
  8. Uncomment the commented value (the index input in the a!update function) and replace the line with the newly created relationship as shown. cms_acr_reference_case_assignment_history_relationship

  9. Click SAVE CHANGES.

Step 2: Add the automated case routing assignment logic

  1. Search for and open the CMGT_Role_CreateCase_CreateAssigneeAndAssignedGroup expression rule.
  2. In the a!defaultValue() that returns the assignees, add the following code snippet as the second input to the function as shown.

    1
    2
    3
    
    rule!CMGT_ACR_EVAL_RouteCaseToUserOrGroup(
          case: ri!case
        ),
    

    cms_acr_add_case_routing_assignment_logic

  3. Click SAVE CHANGES.

Setting Up Automated Case Routing Module

FEEDBACK