Exception in REframework

Hi @T_Y_Raju

It looks like your Try/Catch block is preventing any exceptions to be raised in order for the ReFramework to handle them correctly. The Catch portion of the Try/Catch is catching the exception and the process is continuing on thinking that the transaction was successful. You can fix this two ways:

Remove the Try/Catch block so that any system errors will trigger the ReFramework to set the Transaction Status to System Error.

OR

If you still want to use a try catch block, place a “Rethrow” activity inside the Catch portion of the Try/Catch block as the last activity. This will Rethrow the exception that was caught and throw it to a higher level so that the ReFramework can handle it.

Have a look on the thread

Regards
Gokul