- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2020 09:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2021 04:02 AM
Instead of replicating the attachments in the different table you can use this feature
"Related Attachments" Related List
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2020 09:44 AM
When posting questions on the community, be a descriptive as possible otherwise we won't be able to help you. These past 6 questions look to be very much like stories that you've been assigned and have put no thought in.
We are here to help / assist / guide. We are not here to do your job.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-01-2021 05:13 AM
Hi Naga Ravindra,
The above requirement can be achieved through the Business Rule.
i have attached screenshot of it
//Inside Script in Business Rule
(function executeRule(current, previous /*null when async*/) {
var attachment = new GlideSysAttachment();
var changeRequestSysId=current.getValue('change_request');
var copiedAttachments = attachment.copy('change_request', changeRequestSysId, 'change_task',current.sys_id);
//gs.addInfoMessage('Copied attachments: ' + copiedAttachments);
})(current, previous);
GlideSysAttachment doc for more Information : GlideSysAttachment
Mark ✅ Correct if this solves your issue and also mark ???? Helpful if you find my response worthy based on the impact.
Regards,
Akshay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2021 03:25 AM
Hope you are doing good.
Did you get a chance to check on the solution provided to resolve your query?
If your query is resolved please mark appropriate response as correct & helpful so that this thread can be closed and others can be benefited by this.
Regards
Akshay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2021 04:02 AM
Instead of replicating the attachments in the different table you can use this feature
"Related Attachments" Related List
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader