Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2015 12:05 AM
Hi Felix,
Try to put some log statements in the code to know the flow. If control is entering in any of the if/else conditions and still its not working then you could try to assign assignment group using sys_id of respective group.
- if (sEmailAddress.indexOf("ithelpdesk@conns.com") != -1) {
- gs.log("Email From :"+ithelpdesk@conns.com);
- current.assignment_group.setDisplayValue("IT Helpdesk"); //replace with current.assignment_group = sys_id_of_group
- }
- else if(sEmailAddress.indexOf("security@conns.com") != -1){
- gs.log("Email From :"+security@conns.com);
- current.assignment_group.setDisplayValue("IT Securities"); //replace with current.assignment_group = sys_id_of_group
- }