[resolved] About the global variable NB_LINE in the component
Something need to pay attention when you use globalMap.get("*_NB_LINE").
eg, we have 2 global int variables: tFileInputDelimited_1_NB_LINE and tFileOutput_1_NB_LINE with the same value 125.
The above expression will evaluate true. When the global int variable NB_LINE <=127, the above expression will evaluate true always.
But when NB_LINE >=128, the above expression will evaluate false.
Therefore, we'd better not using the above expression, here is suggestion to use the global variable as the following to avoid potential problems.