Originally posted by: SystemAdmin
There a number of ways of doing this. The approach you need to take depends on how the type tree is structured. Is your OUTPUT tree's NTE 03 element a single field or is it defined as a delimited, repeating field? If its a single field, do the values need to be delimited by a space character?
If NTE 03 is a single field, your
best option is to edit the type tree to make it a space delimited, repeating field, which will allow a simple map rule to be used. If you can't edit the type tree, and the output data does not need to be space-delimited you can just use the SERIESTOTEXT function. If your OUTPUT needs to be space-delimited and you have a known maximum possible number of INPUT NTE records, you could even create a crude rule like:
=TRIMRIGHT(NTE03:NTE[1] + " " + NTE03:NTE[2] + " " + NTE03:NTE[3] + " " + NTE03:NTE[4] + " " + NTE03:NTE[5])
That would be my least favorite option, but in a pinch it would work.
#DataExchange#IBM-Websphere-Transformation-Extender#IBMSterlingTransformationExtender