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.