append xml node into a list - jdeveloper/oracle bpm

Chortizh

New Member
In an embedded sub process with looping logic, we have a db adapter call.We are trying to insert the single response object from each of the db adapter call into a list.Problem I am facing is the list is not able to append the new db response into the list.Using the following three messages Msg1: - Loop Interation 1\[code\]<elementCollection><element>aaa</element></elementCollection>\[/code\]Msg2: - Loop Interation 2\[code\]<elementCollection><element>bbb</element></elementCollection>\[/code\]Msg3: - Loop Interation 3\[code\]<elementCollection><element>ccc</element></elementCollection>\[/code\]to be inserted into the following messageResult: - After all the iterations\[code\]<elementCollection><element>aaa</element><element>bbb</element><element>ccc</element></elementCollection>\[/code\]AppendToList is not working and no help is available as it is deprecated. XSLT construct copy-to was not of help as it cannot remember the result message and keep appending the new msg coming from the iterationAny help/pointers will be appreciated.Thanks,Chandan.
 
Back
Top