UI action to load datasource
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2023 11:45 PM
Hi All,
I have created an UI action named "upload" , through which user will attach an excel. Using that excel data will processed and update table. Excel will be attached in sys_data_source record and through schedule import , data will processed.
Now issue is when user attach the file for the first time it processed successfully. But when second file added, still the first file only getting processed.
I need help to process the second file so that user data will be updated.
UI action script:
function uploadDocuments(){
saveAttachment("sys_data_source","c12345671b45ad10a169dd72b24bcb1b");

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:24 AM
After First File Data Upload - Seems in same session its not idedntifying the second file?
Can u see the entry for second file in table - sys_data_source
Regards
RP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:26 AM
Yes entry available in sys_data_source table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:42 AM
Ideally we should use only one file to process data as there is just one target able we specify in transform map.
Even if we can attach multiple files ,only one file gets processed.
If you want to check ,remove your first file ,attach second file and then run your import set.
Thanks,
Manjusha Bangale
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:47 AM
Hi Manjusha,
Thanks for the reply.here users updating through UI action and they dnt have option to remove the file. only admins can remove the file. so i want help to remove the file and update the new file