cancel
Showing results for 
Search instead for 
Did you mean: 

Message mapping Segments concatenations at same level

Former Member
0 Kudos

There are n number of segments repeating at the same level. We need to concatenate the all these fields and map it to the target field description.Right now only one segment text is displaying in the description field at target .

-

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Check the thread..

[;

Regards,

Prakasu.M

Former Member
0 Kudos

Hi,

you could use a UDF of type context with input param a:

String returnValue = "";

for (int index = 0; index < a.length; index++) {

returnValue += a\[index\];

}

result.addValue(returnValue);

Regards

Patrick