Greetings,
I’m working on the Client Security Hash assignment from the RPA certificate.It looks like the program runs into problems with the following line:
out_TransactionItem = dt_WorkItems(in_TransactionNumber)
dt_WorkItems looks like it contains something.
Here’s the trace of the variables:
Heres the source code:
RoboticEnterpriseFrameworkHasher.zip (993.2 KB)
bcorrea
(Bruno Correa)
December 10, 2019, 8:30pm
2
actually that datatable is shown with 0 items inside…
1 Like
David3
(David Rajkumar)
December 11, 2019, 6:48am
3
Usually this error will occur when you passed the index more than the count of array.
For ex if I’m splitting my name as character array (D A V I D) my array count is 4, Coz array starts from 0 index.
If I try to pass the index as 5 then ( The index is out of the range) error will occur.
Its applicable for datatable as well. Please check the index it should be lesser then Row Count.
Thanks,
David.
system
(system)
Closed
December 14, 2019, 6:48am
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.