Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm working with TOS 7.3 and I'm facing a limitation from Talend. In the image below I have two tFileInputMSDelimited, each one is responsible to get different layouts from the same file. These two layouts have similar fields that I need to insert in the same table and perform the same validations. To do this, I want to reuse the same execution flow that already exist for the first component, otherwise I will be forced to create the same execution flow twice, and this is not what I want.
For example, in the first component exist 200 records and in the second exist 100, I want that the Job execute first the 200 and after that execute the 100 from the second component.
Any idea on how to do that?
if the schemas are the same for both input streams you can do this as a subjob and pass the input file name. Or you can use a tLoop and loop through file 1 and 2.
Thank you for the reply @lli,
The schema is different for both inputs, and the file is the same, so I have more than one schema in the same file.
Luiz Ramos