I have a Datatable with 3 columns,
Name, account number and status.
A name can have multiple account numbers, and if i process any one of the account number of a user, then the status should be set to completed or failed, based on what the process returns.
Things i have done till now.
Outer loop Name:
Get all the account numbers associated with that Name
Inner loop Account numbers are looped
Process is executed and clicked save
It returns either Completed or failed. Now i want to update the all the account numbers associated with that user as completed or failed
** I am stuck here**
once this is done go to the next name.