Hi I'm trying to assign context variables in a tJavaRow with a tMap output. My job is like this: (process)--------tMap---(out)---main---tJavaRow In my tJavaRow: context.C1=out.BUSINESS_ID; context.C2=out.SOURCE; context.C3=out.COUNTRY; This returns "null". When I put a tLogRow after my tMap I see the data. I tried with a tJava in vain. Any Idea? Thanks
Ah I remember. You need to specify the input fields as
System.out.println(input_row.field name)
So in your case you would have
context.C1=input_row.BUSINESS_ID;
context.C2=input_row.SOURCE;
context.C3=input_row.COUNTRY;