Hi all. i have one Sequence with 3 assign activities and i want it continue when the first activity or second activity happen error. Please, help me !
Fine
keep this sequence inside TRY block of TRY CATCH ACTIVITY
and mention the exception as System.Exception in catch block so thatt error will be caught in the catch if any exception occurs
CHeers @TanVuong
Place all Assign in individual Try Catch block, and in the exception catch part do not do anything.
sorry for bother but even i use Try/Catch, when one assign activity happen error, it will go to outside of Try / Catch. i only want the next assign activity executed to the end.
fine
in that case put each assign activity inside three individual try catch activity inside the TRY block
so that if one fails the exception will be caught in its respective catch block and will continue with the next assign activity inside the next try catch activity
–so three try catch for three assign activity each within the try block of each try catch activity’
Cheers @TanVuong
yeah, thats why I have mentioned
“Place all Assign in individual Try Catch block, and in the exception catch part do not do anything.”