Record producer attachments should be visible on table record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2023 11:40 PM
Hello,
I have created a record producer which holds more than 3 variable type as attachment.
When we submit the form, a record is created I want all the attached documents in record producer should be visible on the table record.
Can someone please help me with this.
Thank you.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2023 12:15 AM
Hi @Bindu Jayagond ,
Follow the below link
Please mark correct if my response has solved your query.
Cheers,
Mohammed Basheer Ahmed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2023 01:09 AM
Hello @Bindu Jayagond ,
try this in record producer script
var gr = new GlideRecord('sys_attachment');
gr.addQuery('sys_id',producer.your_attachment_field_backend_name);
gr.query();
if(gr.next())
{
gr.table_sys_id = current.sys_id;
gr.update();
}
Hope this helps
Mark my answer correct if this helps you
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2023 01:21 AM
By default, those attachments which you have uploaded using Attachment button are available on the record itself in Activity feed as shown below:
This is what you need right? If the use case is different do respond back and will try to help you here.
Regards,
Shloke