Reassignment counter increased by 2 for single change in assignment group
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wednesday
In my ServiceNow instance Reassignment counter is getting increased by 2 for single change of assignment group. This is an intermittent issue. As per ServiceNow support this is occurring due to custom "Save" button on form. Following is the condition and script for the "Save" button. Can someone help me to understand what is in the script that is causing the issue
Condition : !(current.isNewRecord() && !current.canCreate()) && current.canWrite()
Script:
action.setRedirectURL(current);
current.update();
if (! current.isActionAborted())
action.setRedirectURL(current);

10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thursday
@Jeffrey Siegel
I did check but there is no other UI action present with same name on that table
