Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Gadje
Contributor III
Contributor III

((String)globalMap.get("row1.XXXXX")) from tAS400Input don't work

Hello,

I need to catch a value from tAS400Input in context but it didn't works with a simple "context.nocli001=((String)globalMap.get("row1.NOCLI"))"

I don't know how to do for put sql query field in context.

0693p00000AZBSSAA5.jpg

I created a context nocli001.

When i try to display context value i only have null value.

0693p00000AZBTHAA5.jpg

If somebody knows how to do ...

Thanks

Labels (2)
1 Reply
Anonymous
Not applicable

Hi

If you want to the current field value, you need to use tJavaRow instead of tJava, eg:

context.nocli001=input_row.NOCLI;

System.out.println(context.nocli001);

 

Regards

Shong