Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
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
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
Thanks for this.. Amazing....