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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
rp2018
Creator
Creator

How to convert tjava code to tjavaflex?

I have following tjava code which I need to implement in tjavaflex component.  The reason is tJava component is not connecting to tRestClient component.

 

if ( ((Integer)globalMap.get("tLoop_2_CURRENT_ITERATION")) > 10)
{

context.continueLooping = false;
}

else
{
context.continueLooping = true;
}

Labels (4)
1 Reply
vapukov
Master II
Master II

just put your code in a midle part of tJavaFlex.

 

top part - run before any iterations

middle - run for each row, what you are really want

bottom part - run after all iterations