I have a problem using the javascript step transformation.
I have only three steps:
1- Data Grid (with the dataset)
Input:
Col_1 | Col_2 | Col_3
a b c
d e f
2- Modified Java Script Value
var resultField = col1 + " " + col2 + " " + col3;
And resultField is the single Output field from the step
3- Text File Output
A simple csv where I need to export the result.
Expected Output 1 row with the result :
abcdef
Real Output 2 rows with splitted result:
abc
def
Thank you!