Ignore Error

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 !
image

2 Likes

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

2 Likes

Place all Assign in individual Try Catch block, and in the exception catch part do not do anything.

2 Likes

kindly let know for any queries or clarification
@TanVuong

1 Like

thank @Palaniyappan so much , i will try this.

2 Likes

thank @sarathi125 so much.

1 Like

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.
image

1 Like

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

3 Likes

yeah, thats why I have mentioned

“Place all Assign in individual Try Catch block, and in the exception catch part do not do anything.”

3 Likes