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

TflowMeterCatcher (variable Count)

Hello,

 

I need to know how i can call the  Count variable in Tjava that comes from the tflowMeterCatcher to display it with System.Output.println....

 

best regards.

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hi
Don't know the details of your job design, however, if you just want to print the count value to the console, use tJavaRow instead of tJava, eg:
tFlowMeterCatcher--main--tJavaRow-->...
on tJavaRow:
System.out.println(input_row.count);

Regards
Shong