Bulk Upload of records using Inbound Action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 10:04 AM
I have created an Inbound email action where Data source is the target table. In this case, I am checking the body of the email as first step. If body of the email i.e., vendor (in script) exits on control table then the attachment attached in the email should work on the data source table mentioned in the script.
But somehow my script is not working on data source table (the attachment is not getting updated). Can anyone help me.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 11:33 AM
Copy of attachments take place on sys_attachment table, hence no updates will take place on sys_data_source table. However, the attachments will show up sys_data_source table once the GlideSysAttachment.copy method is called.
Please open the record having sys_id d767ff601bbd71104444415de54bcbdc on sys_data_source table and check if it shows the attachments there? Ideally the attachment should have been copied via the script shared above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 11:38 AM
Yes, that was the issue, the attachment is not updating on the data source.