Major Incident candidate trigger Rule not working properly
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2022 01:43 AM
Hello Team,
I need your help for fixing below issue.
- I created field on the incident form - Is this is a major incident field with choice type
- And I Map this field on the record producer Service Incident
- and then Create major incident trigger rules based on that new field = yes
If I select Is is this major incident -Yes in front end (SP)
- value in the backend is not populated properly. It adds a new value ‘yes’ to the choice list instead of using the existing one
- Also after creating incident and selecting it is a major incident, the incident still does not appear in the Major Incident Candidate list.
How to fix above issue ?
Labels:
- Labels:
-
Incident Management
7 REPLIES 7
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2022 04:14 AM
Hi,
then don't use Map to field; you can use script if target field is of type Boolean
if(producer.variableName == 'yes')
current.u_target_field = 'true';
else
current.u_target_field = 'false';
Regards
Ankur
Regards,
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2022 02:42 AM
Can reply me on below query please ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2022 02:21 AM
How to fix above issue . How to map correct type in incident form and record producer