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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to get value from toracleinput to context variable

Hi,
I need to get the output of toracleinput to a context variable. How can i do that ?
Thanks,
Labels (2)
1 Reply
Anonymous
Not applicable
Author

tOracleInput --> tJavaRow
and in the tJavaRow synch schema, create code and change the code like this:
Assuming you have a column called ID:
This is what you get first:
output_row.ID = input_row.ID;

change is to:
context.ID = input_row.ID;

Thats it.