<?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 tflowtoiterate : what does &amp;quot;use the default (key value in global variable&amp;quot; means? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355350#M121120</link>
    <description>&lt;P&gt;hELLO&lt;/P&gt;&lt;P&gt;can you tell me how Am I supposed to use the &lt;B&gt;tflowtoiterate &lt;/B&gt;component when I check the box to use the default (key value in global variable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see examples wihtout using the default (key value in global variableAnd I think i Understanf how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i'm totally confused of what happened and I don't know when i'm supposed to chekc this box.&lt;/P&gt;&lt;P&gt;can you give me an example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 21:32:05 GMT</pubDate>
    <dc:creator>BeginnerNeedsHelpPlease</dc:creator>
    <dc:date>2024-11-15T21:32:05Z</dc:date>
    <item>
      <title>tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355350#M121120</link>
      <description>&lt;P&gt;hELLO&lt;/P&gt;&lt;P&gt;can you tell me how Am I supposed to use the &lt;B&gt;tflowtoiterate &lt;/B&gt;component when I check the box to use the default (key value in global variable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see examples wihtout using the default (key value in global variableAnd I think i Understanf how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i'm totally confused of what happened and I don't know when i'm supposed to chekc this box.&lt;/P&gt;&lt;P&gt;can you give me an example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355350#M121120</guid>
      <dc:creator>BeginnerNeedsHelpPlease</dc:creator>
      <dc:date>2024-11-15T21:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355351#M121121</link>
      <description>&lt;P&gt;Hi @adi nul​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you enable the "use the default key value in global variable" option on tFlowToIterate, it means that it will create a global variable automatically for each column on the input schema. The variable names will be set based on the row name and the column names on the input schema.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose you have an input component connected to tFlowToIterate through a row called "row1" and this input component has two columns on its schema: "id" of Integer data type and "name" of String data type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, tFlowToIterate will create row1.id and row1.name global variables automatically and you can get those variables content using the following expressions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;((Integer)globalMap.get("row1.id"))&lt;/P&gt;&lt;P&gt;((String)globalMap.get("row1.name"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Usually, tFlowToIterate show the variables it creates on the outline view of Talend Studio, but sometimes you need to close and open the Job again to refresh the variables list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you disable the "use the default key value in global variable" option, it means that you'll define the global variables created by tFlowToIterate manually.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 17:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355351#M121121</guid>
      <dc:creator>anselmopeixoto</dc:creator>
      <dc:date>2023-07-26T17:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355352#M121122</link>
      <description>&lt;P&gt;thanks, I think I got it.&lt;/P&gt;&lt;P&gt;Regarding the global variable, is there a shorcut to type them?&lt;/P&gt;&lt;P&gt;I did some test and I have to type "((Integer)globalMap.get("&lt;A href="https://row1.id" alt="https://row1.id" target="_blank"&gt;row1.id&lt;/A&gt;"))" letter by letter on my keyboard.&lt;/P&gt;&lt;P&gt;When I use context, I can use the shorcut "crtl" + "space" to get some contexts and just select the one I want&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 07:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355352#M121122</guid>
      <dc:creator>BeginnerNeedsHelpPlease</dc:creator>
      <dc:date>2023-07-27T07:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355353#M121123</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Feel free to let us know if this documentation is what you are looking for&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/8.0/studio-user-guide/setting-field-dynamically-ctrl-space-bar" alt="https://help.talend.com/r/en-US/8.0/studio-user-guide/setting-field-dynamically-ctrl-space-bar" target="_blank"&gt;https://help.talend.com/r/en-US/8.0/studio-user-guide/setting-field-dynamically-ctrl-space-bar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 08:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355353#M121123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-27T08:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355354#M121124</link>
      <description>&lt;P&gt;I'm not sure this documentation answers my question&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I want to use a global variable created automatically by  tFlowToIterate (such as ((String)globalMap.get("&lt;A href="https://row1.name" alt="https://row1.name" target="_blank"&gt;row1.name&lt;/A&gt;")) ), I can't get it dynamically.&lt;/P&gt;&lt;P&gt;Do you know what I mean? I have to write it character ny character? Is there a way to get it dynamically because 'ctlr space' does not work here&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 10:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355354#M121124</guid>
      <dc:creator>BeginnerNeedsHelpPlease</dc:creator>
      <dc:date>2023-07-27T10:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355355#M121125</link>
      <description>&lt;P&gt;Hi @adi nul​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By typing the shortcut @Xiaodi Shi​&amp;nbsp;mentioned before, tFlowToIterate global variables will be shown at the proposals list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try pressing Ctrl+Space and start typing "tFlow..." (case sensitive) and it will filter the options available:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000lwMPMAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151637i767C72EB07DCD929/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000lwMPMAA2.png" alt="0695b00000lwMPMAA2.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 11:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355355#M121125</guid>
      <dc:creator>anselmopeixoto</dc:creator>
      <dc:date>2023-07-27T11:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: tflowtoiterate : what does "use the default (key value in global variable" means?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355356#M121126</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In a job, you are able to fill up a field or expression with a variable, press Ctrl+Space to access the variable list and choose the variable to use from it. &lt;/P&gt;&lt;P&gt;As tFlowToIterate requires an output component, you could use tJava to print the result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000lwaDKAAY.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158302i55F88175D08906C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000lwaDKAAY.png" alt="0695b00000lwaDKAAY.png" /&gt;&lt;/span&gt;For parent and child jobs, here is also a related scenario about:&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/8.0/orchestration/component-trunjob-pass-value-from-parent-to-child" alt="https://help.talend.com/r/en-US/8.0/orchestration/component-trunjob-pass-value-from-parent-to-child" target="_blank"&gt;ttps://help.talend.com/r/en-US/8.0/orchestration/component-trunjob-pass-value-from-parent-to-child&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this use case, you have to define a context variable(Cross jobs) to pass the value.&lt;/P&gt;&lt;P&gt;Hope it helps.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 03:23:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tflowtoiterate-what-does-quot-use-the-default-key-value-in/m-p/2355356#M121126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-28T03:23:21Z</dc:date>
    </item>
  </channel>
</rss>

