Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2020 08:20 AM
Hello,
I have a UI action that creates a new record in a new table, it then copies all of the old info and inputs it into the new record. However, I would like the attachments to transfer as well. How can I achieve this?
Here is what I have so far:
var gr = new GlideRecord('x_utsll_candidate_candidate_tracking');
gr.first_name = current.first_name;
gr.email_address = current.email_address;
gr.last_name = current.last_name;
gr.insert();
How can I also transfer the attachments?
Solved! Go to Solution.