- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2020 11:35 PM
Hi,
I have 2 tables:
- task table (task)
- reason for change table (u_reason_for_change)
I have fields named "executive summary" and "cause of outage". Once I input one of those in task fields and submit the task, it was not copied in the reason for outage fields named "executive summary" and "cause of outage" also. Can you give me a idea on how to do it? Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2020 11:47 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2020 08:29 PM
Hi,
Any updates on this.
Thanks,
Dhananjay.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2020 05:41 AM
Hi,
Upon checking, the Parent.Number is the common field. Is there anyway to copy the values of fields from parent to child?
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2020 08:20 PM
Yes,Using script include you can copy one table value to another.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2020 12:19 AM
hey,
Create an after update Business Rule
In Script section write the below code.
var gr = new GlideRecord("u_reason_for_outage");
gr.initialize();
gr.u_executive_summary = current.executive_summary;
gr.insert();
Hope this helps you
Thanks,
shrutika