Create a project with multiple processes to run one after other. If one fails, skip that and proceed further with the next process.

Hi @Karthikeyan_CS,

You need to put a foreach loop with data table containing all clients information

Withing this foreach loop use try catch activity

Place all processes withing this try’s do sequence
And put a log message in the catch section.

Note: Dont place any throw or rethrow activity within this catch activity, otherwise it can’t process remaining clients.

Regards,
Dibyaprakash

You can mark it as solution if it was helpful for you.