I have a process where I need to filter the excel data with some condition and for each data row, there is a column which contains group of invoice numbers.I Need to process using these Invoice numbers and should move onto next row.
I am getting the data row as transaction data and I am fetching the Invoice values from a particular column and processing using ‘for each’. But the problem is, when ever there is any exception while processing, it can’t read the next Invoice number and the fetches the next data row and extracts the other set of Invoice numbers. Is there any where I can use the Invoice numbers also as a transaction Item so that whenever any Exception occurs, it moves to next invoice numbers and process continues and then once all Invoice numbers are processed, then it can get the next datarow item and repeats.
Thanks!!