
Component Family |
Orchestration |
|
Function |
tForeach creates a loop on a list |
|
Purpose |
tForeach allows you to to create |
|
Basic settings |
Values |
Use the [+] button to add rows to |
Advanced settings |
tStatCatcher Statistics |
Select this check box to collect the log data at a component |
Global Variables |
ERROR_MESSAGE: the error message generated by the CURRENT_VALUE: the value currently iterated upon. This is A Flow variable functions during the execution of a component while an After variable To fill up a field or expression with a variable, press Ctrl + For further information about variables, see Talend Studio |
|
Usage |
tForeach is an input component |
|
Log4j |
The activity of this component can be logged using the log4j feature. For more information on this feature, see Talend Studio User For more information on the log4j logging levels, see the Apache documentation at http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Level.html. |
|
Limitation |
n/a |
This scenario describes a two component Job in which a list is created and iterated
upon in a tForeach component. The values are then
retrieved in a tJava component.
-
Drop a tForeach and a tJava component onto the design workspace:

-
Link tForeach to tJava using a Row > Iterate
connection. -
Double-click tForeach to open its Basic settings view:

-
Click the [+] button to add as many rows to
the Values list as required. -
Click on the Value fields to enter the list
values, between double quotation marks. -
Double-click tJava to open its Basic settings view:

-
Enter the following Java code in the Code
area:
System.out.println(globalMap.get(“tForeach_1_CURRENT_VALUE”)+”_out”); -
Save the Job and press F6 to run it
The tJava run view displays the list values
retrieved from tForeach, each one suffixed with
_out:
