<?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 tfilelist: Issues with using context in autonomous script in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372426#M135266</link>
    <description>hi everyone! 
&lt;BR /&gt;I'm looking for solving a problem I have with using context in tfilelist for an autonomous job. 
&lt;BR /&gt;I have done a job which is starting with 
&lt;BR /&gt;tmsgbox--&amp;gt;onsubjob ok--&amp;gt;tjava--&amp;gt;on subjob ok--&amp;gt;tfilelist_1 
&lt;BR /&gt; 
&lt;BR /&gt;In msgbox I've chosen options "question" and "icone question" (french version) 
&lt;BR /&gt;in tjava I put: 
&lt;BR /&gt;context.repertoire_de_travail =(String)globalMap.get("tMsgBox_1_RESULT"); 
&lt;BR /&gt;in tfilelist I put context.repertoire_de_travail in directory textline 
&lt;BR /&gt; 
&lt;BR /&gt;So it should open a messagebox, ask a question and user just have to enter the file directory and everything is running well. But user put 
&lt;BR /&gt; 
&lt;BR /&gt;"H:/MES_ROUTINES" in msgbox there is a null pointer exception. 
&lt;BR /&gt;The directory path is ok without using context or using a context in the contextbox... but entering the path in msgbox does not work... 
&lt;BR /&gt;i've tried with " / or\ but does not work anyway... 
&lt;BR /&gt;Any Idea how i should write it? 
&lt;BR /&gt;Thanks a lot!!</description>
    <pubDate>Fri, 14 Jun 2013 15:11:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-06-14T15:11:09Z</dc:date>
    <item>
      <title>tfilelist: Issues with using context in autonomous script</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372426#M135266</link>
      <description>hi everyone! 
&lt;BR /&gt;I'm looking for solving a problem I have with using context in tfilelist for an autonomous job. 
&lt;BR /&gt;I have done a job which is starting with 
&lt;BR /&gt;tmsgbox--&amp;gt;onsubjob ok--&amp;gt;tjava--&amp;gt;on subjob ok--&amp;gt;tfilelist_1 
&lt;BR /&gt; 
&lt;BR /&gt;In msgbox I've chosen options "question" and "icone question" (french version) 
&lt;BR /&gt;in tjava I put: 
&lt;BR /&gt;context.repertoire_de_travail =(String)globalMap.get("tMsgBox_1_RESULT"); 
&lt;BR /&gt;in tfilelist I put context.repertoire_de_travail in directory textline 
&lt;BR /&gt; 
&lt;BR /&gt;So it should open a messagebox, ask a question and user just have to enter the file directory and everything is running well. But user put 
&lt;BR /&gt; 
&lt;BR /&gt;"H:/MES_ROUTINES" in msgbox there is a null pointer exception. 
&lt;BR /&gt;The directory path is ok without using context or using a context in the contextbox... but entering the path in msgbox does not work... 
&lt;BR /&gt;i've tried with " / or\ but does not work anyway... 
&lt;BR /&gt;Any Idea how i should write it? 
&lt;BR /&gt;Thanks a lot!!</description>
      <pubDate>Fri, 14 Jun 2013 15:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372426#M135266</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-14T15:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: tfilelist: Issues with using context in autonomous script</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372427#M135267</link>
      <description>Hi,
&lt;BR /&gt;I created a simple job following your details and it worked fine. Are you sure the error is happening in this part of your job?
&lt;BR /&gt;I tried even with non-existing folder, backslash, forwardslash, any different combinations.
&lt;BR /&gt;Would it be possible for you to take some screenshots and attach here?
&lt;BR /&gt;Regards,
&lt;BR /&gt;Thiago</description>
      <pubDate>Sat, 15 Jun 2013 17:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372427#M135267</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-15T17:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: tfilelist: Issues with using context in autonomous script</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372428#M135268</link>
      <description>Maybe it's too obvious, but is your tMsgBox tMsgBox_1?  Have you tried printing the result:&lt;BR /&gt;System.out.println((String)globalMap.get("tMsgBox_1_RESULT"));</description>
      <pubDate>Mon, 17 Jun 2013 12:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372428#M135268</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2013-06-17T12:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: tfilelist: Issues with using context in autonomous script</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372429#M135269</link>
      <description>Hi Guys, 
&lt;BR /&gt;I 'm very new to Talend. 
&lt;BR /&gt;I was checking on the tFileList component, where in i can mention the files in a directory. 
&lt;BR /&gt;I have mentioned the Directory path and also mentioned the format as ".csv". 
&lt;BR /&gt;But when i move to next step, that is, component properties of tInputFileDelimited, Talend should present all the global variables which we can use. 
&lt;BR /&gt;I read in some pages that i have to press Ctrl + space bar to get the list . 
&lt;BR /&gt;I m not able to get that. Is there any other way out? 
&lt;BR /&gt;Sumanth</description>
      <pubDate>Mon, 15 Jul 2013 12:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372429#M135269</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2013-07-15T12:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: tfilelist: Issues with using context in autonomous script</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372430#M135270</link>
      <description>Hi Sumanth, 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;I 'm very new to Talend.&lt;BR /&gt;I was checking on the tFileList component, where in i can mention the files in a directory.&lt;BR /&gt;I have mentioned the Directory path and also mentioned the format as ".csv".&lt;BR /&gt;But when i move to next step, that is, component properties of tInputFileDelimited, Talend should present all the global variables which we can use.&lt;BR /&gt;I read in some pages that i have to press Ctrl + space bar to get the list .&lt;BR /&gt;I m not able to get that. Is there any other way out?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Check your hot key for your input. Something might occupy the "space". 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MEek.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135614i0895E93A62376D1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MEek.png" alt="0683p000009MEek.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 16 Jul 2013 04:03:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tfilelist-Issues-with-using-context-in-autonomous-script/m-p/2372430#M135270</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-16T04:03:59Z</dc:date>
    </item>
  </channel>
</rss>

