Assignment rule logic for case assignment for the base below conditions to various groups
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 03:57 AM
Variables:
2 | Global or Regional Impact | Type: single select, mandatory · Global · Regional | Yes |
3 | Region Only visible when “Regional” is chosen in previous question | Type: single select, mandatory 1. ASPAC 2. EMEA 3. LATAM 4. NAM | Yes |
4 | Does this apply to all sectors? | Type: single select, mandatory · Yes · No | Yes |
5 | Sector Only visible when “No” is chosen in previous question | Type: single select, mandatory 1. MedTech 2. Non – Operating (NOP) 3. Innovative Medicine | Yes |
6 | Is this related to One Vision? This only visible when MedTech is chosen for the previous question | Type: single select, mandatory · Yes · No | Yes |
7 | One Vision This only visible when Yes is chosen for the previous question | Type: single select, mandatory · Surgical Vision · Vision Care | Yes |
8 | MRC Only visible when “Region” is chosen in previous question. Note that MRC needs to be linked to MRC LE table. | Type: multi-select, mandatory | Yes |
9 | Request type | Type: single select, mandatory
|
Triaging:
Based on Request Type (Initially)
- All Transactional tickets (1-4 in Request Type choices) will be triaged to:
- SMF GS A2R GIC - Transactional
- All LR41 Related and Audit Related tickets (5 & 6 in Request Type choices) will be triaged to:
- SMF GS A2R GIC - LR41 and Audit
- The remaining Request Types (7-12) will be triaged based on Global or Regional initially, Sector, and for MedTech (non-One Vision) and Innovative Medicine, by Region as well (see below):
- Global Include 'Yes' responses to question "Does this apply to all sectors" (Exclude when sector = Non – Operating (NOP) or MedTech One Vision (Yes) is chosen for Sector)
- SMF GS A2R GIC - Reporting - Global
- MedTech (when One Vision question = 'No')
- SMF GS A2R GIC - Reporting - MedTech (ASPAC)
- SMF GS A2R GIC - Reporting - MedTech (EMEA)
- SMF GS A2R GIC - Reporting - MedTech (LATAM)
- SMF GS A2R GIC - Reporting - MedTech (NAM)
- Innovative Medicine
- SMF GS A2R GIC - Reporting - Innovative Med (ASPAC)
- SMF GS A2R GIC - Reporting - Innovative Med (EMEA)
- SMF GS A2R GIC - Reporting - Innovative Med (LATAM)
- SMF GS A2R GIC - Reporting - Innovative Med (NAM)
- Vision Care (All Regions and Global)
- SMF GS A2R GIC - Reporting (Vision Care)
- Surgical Vision (All Regions and Global)
- SMF GS A2R GIC - Reporting (Surgical Vision)
- Non - Operating (NOP) - (All Regions and Global)
- SMF GS A2R GIC - Reporting (NOP)
- Global Include 'Yes' responses to question "Does this apply to all sectors" (Exclude when sector = Non – Operating (NOP) or MedTech One Vision (Yes) is chosen for Sector)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 03:59 AM
working script till Point 2
var assignmentGroupJSON = gs.getProperty('x_jj_dfit.all.assignment.group');
var assignmentGroup = JSON.parse(assignmentGroupJSON);
if (current.variable_pool.request_type.getDisplayValue() == "Transactional: Status of my Intercompany SO-PO transaction (OHUB only)" ||
current.variable_pool.request_type.getDisplayValue() == "Transactional: Supporting Document Requests" ||
current.variable_pool.request_type.getDisplayValue() == "Transactional: Service Agreement" ||
current.variable_pool.request_type.getDisplayValue() == "Transactional: Queries on Intercompany Policy")
{
current.assignment_group = assignmentGroup.usergroup[4].SMF_GS_A2R_GIC_Transactional;
}
else if (current.variable_pool.request_type.getDisplayValue() == "LR41 Related" ||
current.variable_pool.request_type.getDisplayValue() == "Audit Related")
{
current.assignment_group = assignmentGroup.usergroup[4].SMF_GS_A2R_GIC_LR41_and_Audit;
}
else
{
current.assignment_group = assignmentGroup.usergroup[4].SMF_GS_A2R_GIC_Reporting_Global;
}