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: 
Michael_Ingrum
Contributor
Contributor

Get a list of all output components in a job?

Hello,

Is there a way to get the unique names of all components in a job? I want to write a function that will get the inserted count of all my output components. I want the function to be generic enough so that I don't need to rely on trying to figure out how many components there are in a job. The closest I can get is a for loop that loops through the names, but that only works if we never delete an output component.

Cheers,

Mike

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi

Right click on the job and select 'generate Doc As HTML' option to export the Job documentation, there is a XML file which list all the components used in the job. Have a try to parse this XMl file to get the list of components.

 

Regards

Shong

View solution in original post

3 Replies
Anonymous
Not applicable

Hello,

You could display the code or the outline of your Job in talend

Please have a look at this online documentation about: TalendHelpCenter: Displaying the code or the outline of your Job

Best regards

Sabrina

 

Anonymous
Not applicable

Hi

Right click on the job and select 'generate Doc As HTML' option to export the Job documentation, there is a XML file which list all the components used in the job. Have a try to parse this XMl file to get the list of components.

 

Regards

Shong

Jwoodberry
Contributor
Contributor

Thanks for this.. Amazing....