Guys,
Need a help. I am using RE Framework in my project. I have one transaction. Under this transaction number 1 (get transaction data) > in the process > I am executing a for-each row loop and performing multiple process there. Say i am reading an excel and have to perform few operations for each row. In specific cases, any one of the row can fail.
REF handles 2 exceptions > Business exception and System. Business exception ends the current transaction, goes to the second transaction. and the system exception closes the application and starts with the next transaction as well. For one record that gets failed inside the for each row > I should not skip the transaction itself. Instead, i should mark that specific record as failed and process the next row of the for each. Once all records in the for-each is complete, i need to go next transaction.
In any of the business exception on the second or third row of my iteration in process ⌠i am skipping the other rows of for-each. how to handle this? any idea?
Let me know if you cant understand the situation. Will try to explain in better way.