How to Update Item status in Output file , Incase of system exception in RE frame work?

Hello Team ,

How to Update Item status in Output file , Incase of system exception in RE frame work ?

I am not using any retry for transaction item, i want to update the status of the transaction in the input file by adding an extra column.

@Akhil_Raveendran

In your set transaction status xaml…you have a sequence for system exception in that you can have steps to update the status in file

The same can be done in the catch block of process.xaml…

Hope this helps

Cheers

1 Like

Hi @Akhil_Raveendran

In the Catch block, after the exception is caught, add the following steps:

  • Read the input file that contains the transactions.
  • Update the status of the transaction item that encountered the exception by adding an extra column or modifying an existing column.
  • Write the updated input file to save the changes.

Thanks!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.