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: 
Anonymous
Not applicable

connnection -iterate execution order

Hello all,
I have 3 component in my job
tFilelist1   ------Iterate------>    tFileInputDelimeted_1  ----------------> row main ---------->    tFileOutputDelimeted_1
File List iterate on directory and send each file to input delimeted and it transfer all records to output.
In tFileInputDelimeted  the value of "File name/Stream" parameter is putted as :  ((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))
I seen the code of all components and understand that tFilelist iterate over directory and put each file in global map in its begin section,
tfileInputDelimeted opens the file in its begin section.
Means the order of execution is begin of tFilelist then begin of tFileInputDelimeted.
But I read in component creation document as begin starts from last component i.e
begin2 -> begin1 then main1 -> main2 then end1->end2.
Please tell me why it conflicts or am i doing any misconception.
Labels (2)
10 Replies
Anonymous
Not applicable
Author

Ok .Thnak you , very much.