input data input.xlsx (74.4 KB)
it’s having a column HDD, I read the data by using read range activity.
In the for each loop I need to select the radio button based on HDD in the website (Server Setup )
so apart from the these 250 GB, 500 GB, 1 TB, 2 TB & 5 TB. anything comes I have to skip the transaction.
Instead of skipping the transaction while the specific HDD is encountered, you can filter the datatable before the for each to keep only the HDD 250 GB, 500 GB, 1 TB, 2 TB & 5 TB in the data table.
@Manju_Reddy_Kanughula ,
If anything other than 250 GB, 500 GB, 1 TB, 2 TB & 5 TB comes then You can send mail message in the Default section this section executes only if all the conditions doesn’t match
I you found 1000 TB in swich case it will go to the default section, there you can throw a business exception. then in business exception you can send the mail.
@Manju_Reddy_Kanughula ,
You can handle this using Try catch activity
Surround the activity with "Try catch "
Use “Throw activity” to throw business exception in the try section like below