Hello!
I’m currently automating a process with the REFramework, where I have an Excel database with the IDs of some vendors (read range in Initialization), and I must retrieve their basic information in a system. After I retrieve their information, I have to create those vendors in another system.
The catch is, from that one vendor ID, there could be more than one vendor created based on how many bank accounts it has. To do that, I manipulate the information and save the new vendor IDs in a datatable. From there, I create the vendors based on the datatable that is in my Process file.
How do I handle exceptions when it is creating the vendors, so that when I throw and try catch, it will continue to the next row in datatable? At the moment I am assuming that it will continue to the next item in my Excel instead of the next item in my datatable?