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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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.