Hi, How can I use the data from an output of tAgreggateRow to tMap? I can't join this two components. I also tried with tFilterRow and can't join it with tMap either. Thanks in advance, Khor
Hi Khor Got it. The reason is that in talend you can't create a job with any loop(circle). tMap(181) -> tAgreggateRow ->tMap_5 | | ---------------------------------- It's a circle, which is forbidden. Regards, Pedro
Hi
I'm afraid you have to save the temp data into a file.
Then create a subjob with "OnSubjobOk" to load data from it.
Or you can use tHashOutput and tHashInput which save temp data into memory.
But these components will have a bad effect on performance.
Regards,
Pedro