How to break current transction to next transaction in Uipath?

can i break current transction to next transaction in Uipath ?

Hi @SongDinh,

Welcome to the community.

May I ask why do you need to proceed to the next transaction?
What may be the condition/s on when to proceed to the next transaction?

@SongDinh

Welcome to the uipath community.

Are you using REFramework?

If you want to skip the transaction that doesn’t meet your condition then throw Business Exception. And then it will skip current transaction and will process next transaction item.

Dear jogayon001, thanks for your support,
I have 2 case,
for example:
if (a=0) break;
else if(a=1) continue process

Hi @SongDinh

You may use while and a=1 as the condition, when you change a to 0, it will break out of the loop
You may refer to below.
Main.xaml (5.7 KB)

I assume this is within a for each activity?
If yes, you may use If activity with a condition a=0.
You may leave Then section as blank and continue your workflow in Else section.

Thanks!

Thanks for all member,
I will try it, if not success, please help me again :slight_smile: