Add Attachment Automatically from Idea to Demand to Story table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-07-2023 08:45 AM
Hi Team,
I need to Add Attachment automatically from idea to demand to story.
can Someone please help me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-07-2023 09:02 AM
Hi @Baker1
These 2 links will be helpful
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
‎12-11-2023 02:25 AM
Hi @Dr Atul G- LNG
thank you for quick reply
Code is not working as expected
(function executeRule(current, previous /*null when async*/) {
var dmnd = new GlideRecord('dmn_demand');
dmnd.addQuery('sys_id', current.task);
dmnd.query();
while (dmnd.next()){
var ideaAttach = new GlideRecord('sys_attachment');
ideaAttach.addQuery('table_sys_id', current.sys_id);
ideaAttach.query();
while (ideaAttach.next()){
ideaAttach.table_sys_id = dmnd.sys_id;
ideaAttach.table_name = 'dmn_demand';
ideaAttach.update();
}
}
})(current, previous);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2023 05:39 AM
Sorry mate, I am not strong in coding 😞
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]
****************************************************************************************************************