Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anjali3
Contributor II
Contributor II

how to update a flag after each iteration from tflowtoiterate

Hi ,

 

tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow

 

I have three input values to be iterated in this flow.For each input , once the iteration is complete , I want to update a flag in a redshift table to success. or if the iteration fails for another value , it should be updated to failure. Each iteration execution has to be captured separately.

 

But Im unable to update the flag for each iteration.Below flow is failing.

 

tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> main -> tredshiftrow. 

 

if we use onsubjobok , Im unable to capture each iteration separately.

 

Please help.

 

Labels (5)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi,

 

    Please use On Component Ok in your use case.

 

tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> On Component Ok-> tredshiftrow (success flow)

                                                                            |---> On Component Error-> tredshiftrow (failure flow)

 

Warm Regards,
Nikhil Thampi

Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved

View solution in original post

2 Replies
Anonymous
Not applicable

Hi,

 

    Please use On Component Ok in your use case.

 

tfixedflowinput -> tmap -> titeratetoflow -> Oraclerow -> On Component Ok-> tredshiftrow (success flow)

                                                                            |---> On Component Error-> tredshiftrow (failure flow)

 

Warm Regards,
Nikhil Thampi

Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved

Anjali3
Contributor II
Contributor II
Author

Thanks ! It is working fine.