I am currently working on a project in webMethods and need assistance with mapping two or more array document lists[DataDetails] to create a characteristic array list as output.
Error messages / full error message screenshot / log file:
If I understood you correctly, you are trying to map 1 dimensional array to 2 dimensional array. If this is correct one of the output arrays should be single element array. If this is the case you can just copy characteristicsValue to the pipeline as array, loop it 1 to 1 and map it back to your list. This assumes the outer array is the array with single element. You need to initialize the array before the loop. If the inner array needs to be single element, then you can use indexes to loop that array.
Please give an example of the output array if neither of these are the case or if it is not clear somehow.
can you provide a sample of the field-by-field mapping, which field will be mapped to which field, please?
From your screenshot it is difficult to find the matches.
I guess you wanted to map 1 DataDetail[0] to 1 characteristics[0].
if that is the case Loop over DataDetail, inside loop create a temp doc for characteristics and do the required mapping from DataDetail to characteristics.
end of the loop, append temp characteristics doc to a document list