Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a job designed to extracts values from XML file using tXMLMap. Pipeline fails when it tries to extract value from XML with no values in it.
I want the pipeline to continue processing other XML and skip empty XML files.
Hello
Move the part of job as seen below to a child job, use a tRunJob to call this child job, pass the current file path to child job and uncheck the 'Die on error' option on tRunJob, the main job will continue to process next file even though the child job fails.
Regards
Shicong
Hello
Move the part of job as seen below to a child job, use a tRunJob to call this child job, pass the current file path to child job and uncheck the 'Die on error' option on tRunJob, the main job will continue to process next file even though the child job fails.
Regards
Shicong
@Shicong_Hong What do you mean move to child job? Could you clarify more?
After some research, i was able to create the child job and i created optional loop in the tXMLMap with configuring source loops as the picture below. Thanks @Shicong_Hong