Hello,
my problem is that I have to map one list into another list but I don’t want to map all list elements. List elements which don’t match to a special expression should not be mapped.
My solution now is
LOOP input array: array1 output array: array2
BRANCH
map if array1.name = abc into array2
map if array1.name = cdf into array2
map if array1.name = efg into array2
The problem is that also elements which shouldn’t be mapped have a empty node in the output array.
Is there another way but first to make a new list containing only the elements I’m interested in and then loop over this new list to map the elements?
Thanks Sabrina
#webMethods-General#Integration-Server-and-ESB#webMethods