<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Getting value from a global variable in a component field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478236#M141190</link>
    <description>&lt;P&gt;Hello Stefan,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I’m pretty sure you can’t do that with a global variable. There are several ways to transfer data between jobs; could you describe your needs&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Arnaud&lt;/P&gt;</description>
    <pubDate>Tue, 27 Aug 2024 15:08:05 GMT</pubDate>
    <dc:creator>AChardon</dc:creator>
    <dc:date>2024-08-27T15:08:05Z</dc:date>
    <item>
      <title>Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478164#M141181</link>
      <description>&lt;P&gt;I'm populating a global variable (since I cannot seem to get passing contexts between jobs working) and then want to read this value from another job - namely in tFixedFlowInput (for testing). But how do I reference it in the field? &lt;BR /&gt;&lt;BR /&gt;I'm trying this and similar, but it's not working. Ideas? If I do tSetGlobalVar in THE SAME job, it works, but not in another job. I'm also obviously using tRunJob and OnOk to make sure that job gets run first. &lt;BR /&gt;&lt;BR /&gt;(String)globalMap.get("myKey")&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 09:57:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478164#M141181</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2024-08-27T09:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478236#M141190</link>
      <description>&lt;P&gt;Hello Stefan,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I’m pretty sure you can’t do that with a global variable. There are several ways to transfer data between jobs; could you describe your needs&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Arnaud&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 15:08:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478236#M141190</guid>
      <dc:creator>AChardon</dc:creator>
      <dc:date>2024-08-27T15:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478335#M141197</link>
      <description>&lt;P&gt;Thanks, it seems you're right - it doesn't seem possible to use global variables over several different jobs. The are "only" global within the job/joblet.&lt;/P&gt;
&lt;P&gt;I want to pass pieces of data between jobs, in an effort to contain logic in smaller jobs that then gets referenced in several other jobs. An example is to have a small job who's only task is to call a REST API to get an API token that will be used in multiple other places in the pipeline/jobs.&lt;/P&gt;
&lt;P&gt;I seem to have solved it by using tBufferOutput, which was good because it allows me to pass on a whole schema/map of values, instead of just single explicitly named values (like context variables).&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 07:22:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478335#M141197</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2024-08-28T07:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478339#M141198</link>
      <description>&lt;P&gt;I'm just now exploring Joblets as an option. It's interesting that I've only just glaced over that job type before. Thoughts on using that instead?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 07:30:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478339#M141198</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2024-08-28T07:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478343#M141199</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Talend joblets factorizes recurrent processing or complex transformation steps to ease the reading of a complex Job. Joblets can be reused in different Jobs or several times in the same Job.&lt;/P&gt;
&lt;P&gt;Here are online documentations about:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.talend.com/en-US/studio-user-guide/8.0-R2024-07/creating-joblet-from-job" target="_blank"&gt;https://help.talend.com/en-US/studio-user-guide/8.0-R2024-07/creating-joblet-from-job&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.talend.com/en-US/studio-user-guide/8.0-R2024-07/using-joblet-in-job" target="_blank"&gt;https://help.talend.com/en-US/studio-user-guide/8.0-R2024-07/using-joblet-in-job&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 07:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478343#M141199</guid>
      <dc:creator>Xiaodi_Shi</dc:creator>
      <dc:date>2024-08-28T07:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting value from a global variable in a component field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478357#M141200</link>
      <description>&lt;P&gt;maybe&amp;nbsp; you can use the bufferoutput, do a contextload after, and load the data by the context way&amp;nbsp; in other job, by selecting&amp;nbsp;&lt;SPAN&gt;Transmit whole context, or Context Param in runJob component.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or globalVar&amp;nbsp; with ContextParam but you will have to map them all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Not sure if i am very clear &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 08:06:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Getting-value-from-a-global-variable-in-a-component-field/m-p/2478357#M141200</guid>
      <dc:creator>AChardon</dc:creator>
      <dc:date>2024-08-28T08:06:07Z</dc:date>
    </item>
  </channel>
</rss>

