I am solving the REFramework example. In Process.xaml, I need to continue
by skipping data scrapping sequence with next datarow even if it is success or the business rule exception is occurred. Can someone please suggest me the way to do that? I stuck here since 4-5 days.
@saili - Create a Transaction activity between → Get Transaction Data & Process Transaction states and define your rules. like below-
Source : Process Transaction
Condition : BusinessRuleException IsNot Nothing
Destination : Get Transaction Data
Inside the process
→ perform data scrape activity
→ do the for each activity for the extracted data
→ add try/catch block inside the for each activity body sequence
→ add exceptions & business rule exceptions to that and add continue to the next row when there is a exception.