I have a scenario, where I'm importing data to a table that is dependent to each other.
Example in one file:
- Record A is Imported > A Class 1: Qty=1 record has been created afterwards.
- Record AA is Imported > The Class 1: Qty=1 should be updated to Class 1: Qty=2;
- Record AB is Imported > The Class 1: Qty=2 should be updated to Class 1: Qty=3;
- Record B is Imported > The Class 2: Qty=1 will be created.
In my case, I observed that when the import file are being uploaded, the records that are being created is being created at once/at the same time. Thus, my Flow is giving me a wrong output. What can I do?