Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

ServiceNow CIS-ITSM Exam - Topic 1 Question 126 Discussion

If the Assignment group is empty on an incident record, what happens when an agent that is a member of a single user groups clicks the Assign to me UI action?
A) The agent is prompted to select the Assignment group
B) The Assignment group field is populated with agent's user group
C) The Assignment group field remains empty
D) An error is displayed indicating the Assignment group field must be populated before executing the Assign to me Ul action

ServiceNow CIS-ITSM Exam - Topic 1 Question 126 Discussion

Actual exam question for ServiceNow's CIS-ITSM exam
Question #: 126
Topic #: 1
[All CIS-ITSM Questions]

If the Assignment group is empty on an incident record, what happens when an agent that is a member of a single user groups clicks the Assign to me UI action?

Show Suggested Answer Hide Answer
Suggested Answer: A

Reviewed code for UI Action in Tokyo/Utah/Vancouver. It just prints an error message and does nothing, so answer is A.

if (current.assignment_group.nil()) {

var memberGroups = new global.IncidentUtils().getMemberGroups(gs.getUserID(), 2);

if (memberGroups.length > 1) {

gs.addErrorMessage(gs.getMessage('Assigned to user {0} is member of multiple groups, please select one as Assignment group ', [gs.getUserDisplayName()]));

return;

}


Contribute your Thoughts:

0/2000 characters
In
1 month ago
I think if the Assignment group is empty, the agent might be prompted to select one. That sounds familiar from our practice questions.
upvoted 0 times
...

Save Cancel