Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
You can use tFlowToIterate to iterate all rowss one by one, for example:
tFileInputDelimited--main(row1)-->tFlowToIterate--iterate--tRSSInput--main--tLogRow
on tRSSInput, set the RSS URL field as: row1.url
In the link you provided, if you look at some of the responses, Shong comes close to what I am looking for when he states the following:
You can use tFlowToIterate to iterate all rowss one by one, for example:
tFileInputDelimited--main(row1)-->tFlowToIterate--iterate--tRSSInput--main--tLogRow
on tRSSInput, set the RSS URL field as: row1.url
However, what I need in place of the tRSSInput would be a tContextLoad. And then once the context is loaded I need to call another subjob to use that context. Then I need to repeat this step for each row in the tFileInputDelimited. That input file, by the way, would have the following structure (i.e. same context key, different values):
name=John
name=Carol
name=Joan
...
Please advise and if you have a snapshot of the flow that would help tremendously.
context.name = ((String)globalMap.get("row1.name"));
row2.name = context.name;