Hi,
I’m trying to figure the best approach to consolidate data. Okay, I have a document list that looks something like below:
orderList
orderList[0]
field1 = 1
field2 = 3
refnum = 100
orderList[1]
field1 = 2
field2 = 5
refnum = 200
orderList[2]
field1 = 3
field2 = 4
refnum = 200
Each refnum should be unique. The above list would consolidate to:
orderList[0]
field1 = 1
field2 = 3
refnum = 100
orderList[1]
field1 = 5
field2 = 9
refnum = 200
#webMethods#Integration-Server-and-ESB#Flow-and-Java-services