
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 06:48 AM
When clicked on the Create change request ui button on service operation workspace it takes the short description and description to the change request i want the parent field also to be mapped with the incident r record.
How this will be done?
@Ankur Bawiskar any clues?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 06:52 AM
"Out of the box (OOTB), it gets added to the 'Incident Fixed by Change' field, not under the 'Parent' field.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 06:56 AM
CHG and INC are not having parent <-> child relationship between them.
when you create CHG from INC you don't populate the parent field on CHG.
the Change Request field on INC is updated with the CHG you created when you click that UI action in SOW
See below
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 07:11 AM
I will suggest to push back on this requirement.
If customer is not willing to listen, I shared the approach with script below to populate the parent field.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 07:21 AM
"Yes, in that case, there will be only one parent, which again becomes an issue — you can’t have more than one. It’s better to push back on this request and advise the customer to stick with the out-of-the-box (OOTB) behavior.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 07:06 AM
As per my below comment the Change Request field (rfc) gets populated on INC form with the newly created CHG.
If you want to populate the parent field then you can use this logic
After update business rule on INC table
Condition: current.rfc.changes() && current.rfc != ''
Script:
(function executeRule(current, previous /*null when async*/ ) {
// Add your code here
var chg = current.rfc.getRefRecord();
chg.parent = current.sys_id;
chg.update();
})(current, previous);
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 06:56 AM
CHG and INC are not having parent <-> child relationship between them.
when you create CHG from INC you don't populate the parent field on CHG.
the Change Request field on INC is updated with the CHG you created when you click that UI action in SOW
See below
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader