Hi,
I am using a Execute Stored Procedure smart service and it is returning 2 result set and each result set is returning with multiple values.
Now, when I try to grab the store procedure output result into a variable like below, I am getting an error.
An error occurred while evaluating expression: keys:AC!ResultSets[0] (Invalid index (0) for list: valid range is 1..2) (Data Outputs)
Discussion posts and replies are publicly visible
The error message is pretty clear that you are trying to index at 0 position but the valid indexes are 1 and 2, use ac!ResultSets[1]