I run into this issue all of the time and I never remember how I solved it last.
I have the following record structure:
Rec
RecList1
RecList2
RecList3
I want to loop over RecList3 and specify index 0 for RecList1 and RecList2. So I specify the following in my LOOP in-array:
/Rec/RecList1[0]/RecList2[0]/RecList3
In the MAP step inside the LOOP, I expect to see RecList1, 2, and 3 shown as single Records, but only RecList1 is shown a single Record and RecList2 and RecList3 are shown as RecordLists.
Hi I am facing the same problem.i want to get ouput struture as outRec/outRec[o]/outRec[1]/outRec[2].
Can you please post the code for this requirements.
Hi Senthil,I want output like below.
inputRec
documentid
outRec
outRec[0]
DocumentID
outRec[1]
DocumentID
outRec[3]
DocumentID
I got the above output using Values in but i want the same output with IData Pipeline.Please help me as i am new to web methods.
Below is my code using Values in
Connection c = null;
Statement s = null;
Values audit = new Values(5);
I am passing inRec as documentid and 2 input strings like one is WhereCondition and another is Table.I am passing the sql select query in code.The query should get executed basing on these inputs and the output should be as i shown in the above