Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm new to Talend and have a simple task I thought to manage with tMap. My thread creates for each record of an input file some lines for an output. Now I need some "Head-lines" at the top and some "foot-lines" at the bottom of the created file. Is it possible to realize it with tMap or have I use two separate file to combine all parts or is there another way.
Kind regards, Detlev
@microstratege , you need to create three sub flow like below in sequentially by using on Subjob Ok .
1) first flow will create the header data in the file
2) second flow will write the actually data into the same file,so you need to append the data.
3) third flow to populate the footer data to the same file,so you need to append the data.
@microstratege , you need to create three sub flow like below in sequentially by using on Subjob Ok .
1) first flow will create the header data in the file
2) second flow will write the actually data into the same file,so you need to append the data.
3) third flow to populate the footer data to the same file,so you need to append the data.
Hi manodwhb,
very short explanation, but it seems I got it.
Thanks.