I have a process that runs when a new record is inserted and ‘does stuff’, it works perfectly, but.
When I do a bulk upload from Excel to that object, the process runs in isolation, in parallel, for each row in Excel.
Is there any way that the process could ‘detect’ that the inserted record comes from an Excel import and wait for FIleImport process to finish loading and then process row by row of excel?
The best approach I found is to import on temporary table and when done run a process who move records to final one, but I want to found some...MoreLess