Hi Venkat,
Could you please try this mapping
TDLINE context should be set as shown
the UDF Title code of type context to concatenate the values of TDLINE
public void ConcatVal(String[] b, ResultList result, Container container) throws StreamTransformationException{ int i,j; String sa=""; for(j=0;j<b.length;++j) { sa=sa+b[j]; } result.addValue(sa); }
UDF signature
Hope this resolves the problem
Regards
Anupam