I make the page about file upload with File Dropper widget. If Drop the file or Regist from File Explorer, Create Object with Sequence in page. I try to change File Dropper 'Event' option when before commit microflow. This microflow retreive associate file entity, change the list each objects 'Seq' attribute increase gradually variable. But, this action not retreive include the latest file. So, latest file Seq value always 0
asked
LEE GARAM
1 answers
2
Hi LEE GARAM,
Automatic Commit After File Upload:
When a file is uploaded using the file dropper, it automatically commits the file to the system.
Add Attribute (isSaved):
Add an attribute named isSaved to track whether the file has been successfully committed. After committing the file, set isSaved to true.
Retrieve from Database with Condition:
When retrieving documents from the database, filter the results by checking the condition isSaved = true.
This ensures that only the uploaded and committed documents are displayed