
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2020 05:45 AM
Hi Experts,
On creating a child incident using the 'New' UI action in the incident related lists, I want the child to have some fields like Description, Short Description, etc copied from its parent record.
I see there an OOTB UI action, but not sure where to add my function in the existing script.
Some guidance would be appreciated.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2020 07:38 AM
Hi Allen,
I created only a display BR and updated the fields like below:
current.short_description = current.parent_incident.short_description;
current.category= current.parent_incident.category;
current.subcategory= current.parent_incident.subcategory;
current.business_service= current.parent_incident.business_service;
It worked that way.
Thanks a lot though! 🙂

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2020 04:51 AM
Hey,
That is quite a good explanation. I'd surely give it a try in my PDI.
Having the requirement completed is another thing, but I gained more knowledge about the multiple approaches, which is what matters, all thanks to you.:)