<?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: tRunJob does not transfer Context variables when &amp;quot;Use dynamic job&amp;quot; sel in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344661#M112293</link>
    <description>hi Pedro, 
&lt;BR /&gt;Our version is 5.0.1. 
&lt;BR /&gt;Which version do you use? 
&lt;BR /&gt;Maybe I should upload it and try to reproduce the issue? 
&lt;BR /&gt;Please advise. 
&lt;BR /&gt;Thanks again, 
&lt;BR /&gt;Elena</description>
    <pubDate>Tue, 13 Mar 2012 21:18:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-03-13T21:18:04Z</dc:date>
    <item>
      <title>tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344652#M112284</link>
      <description>tRunJob does not transfer Context variables when "use dynamic job" selected. 
&lt;BR /&gt;I am running into issue of transfering context variables to SubJob, when tRunJob is set as "Use dynamic job". 
&lt;BR /&gt;The goal is to set up context variables in job "ContextLoad" and pass them through to dynamically changing Subjob. 
&lt;BR /&gt;Scenario: 
&lt;BR /&gt;1) create Main job called "ContextLoad" and add 2 context variables: DataFileFolder, DBName 
&lt;BR /&gt;2) drop 2 components into this job: tJava and tRunJob. connect tJava with tRunJob using "OnSubjobOK" 
&lt;BR /&gt;3) Enter code below to tJava component: 
&lt;BR /&gt; 
&lt;BR /&gt;// Define Context variables 
&lt;BR /&gt;// 
&lt;BR /&gt;context.setProperty("DataFileFolder","D:/tmp/Test/"); 
&lt;BR /&gt;context.setProperty("DBName","testingDB"); 
&lt;BR /&gt;System.out.println("BEFORE the SUBJOB:"); 
&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder")); 
&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName")); 
&lt;BR /&gt; 
&lt;BR /&gt;4) Create another Job called "Display_context_vars" and add 2 context variables: DataFileFolder, DBName 
&lt;BR /&gt;5) Drop one tJava componenet into this job. 
&lt;BR /&gt;6) Enter code below into this component: 
&lt;BR /&gt; 
&lt;BR /&gt;System.out.println("INSIDE of the SUBJOB:"); 
&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder")); 
&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName")); 
&lt;BR /&gt;7) Save job "Display_context_vars" 
&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; go back to job "ContextLoad" 
&lt;BR /&gt;9) configure tJobRun componenet as below: 
&lt;BR /&gt; - check on "Use dynamic job" 
&lt;BR /&gt; - enter "Display_context_vars" to "Context Job" text field 
&lt;BR /&gt; - click "..." button beside "Job" and select job "Display_context_vars" from the list 
&lt;BR /&gt; - click "Transmit whole context" check box 
&lt;BR /&gt;10) run job "ContextLoad". If you received same results as me, than you were able to reproduce my issue: 
&lt;BR /&gt;Starting job ContextLoad at 18:13 01/03/2012. 
&lt;BR /&gt; connecting to socket on port 3991 
&lt;BR /&gt; connected 
&lt;BR /&gt;BEFORE the SUBJOB: 
&lt;BR /&gt;Data File Folder: D:/tmp/Test/ 
&lt;BR /&gt;DBName: testingDB 
&lt;BR /&gt;INSIDE of the SUBJOB: 
&lt;BR /&gt;Data File Folder: null 
&lt;BR /&gt;DBName: null 
&lt;BR /&gt; disconnected 
&lt;BR /&gt;Job ContextLoad ended at 18:13 01/03/2012.</description>
      <pubDate>Fri, 02 Mar 2012 03:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344652#M112284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-02T03:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344653#M112285</link>
      <description>Hi&lt;BR /&gt;This is due to the code in tJava of "ContextLoad".&lt;BR /&gt;Set it as follow.&lt;BR /&gt;&lt;PRE&gt;context.DataFileFolder="D:/tmp/Test/";&lt;BR /&gt;context.DBName="testingDB";&lt;BR /&gt;&lt;BR /&gt;System.out.println("BEFORE the SUBJOB:");&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder"));&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName"));&lt;/PRE&gt;&lt;BR /&gt;Result is &lt;BR /&gt; connecting to socket on port 3908&lt;BR /&gt; connected&lt;BR /&gt;BEFORE the SUBJOB:&lt;BR /&gt;Data File Folder: null&lt;BR /&gt;DBName: null&lt;BR /&gt;INSIDE of the SUBJOB:&lt;BR /&gt;Data File Folder: D:/tmp/Test/&lt;BR /&gt;DBName: testingDB&lt;BR /&gt; disconnected&lt;BR /&gt;Set it as follow.&lt;BR /&gt;&lt;PRE&gt;context.DataFileFolder="D:/tmp/Test/";&lt;BR /&gt;context.DBName="testingDB";&lt;BR /&gt;context.setProperty("DataFileFolder","D:/tmp/Test/");&lt;BR /&gt;context.setProperty("DBName","testingDB");&lt;BR /&gt;System.out.println("BEFORE the SUBJOB:");&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder"));&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName"));&lt;/PRE&gt;&lt;BR /&gt;Result is &lt;BR /&gt; connecting to socket on port 3511&lt;BR /&gt; connected&lt;BR /&gt;BEFORE the SUBJOB:&lt;BR /&gt;Data File Folder: D:/tmp/Test/&lt;BR /&gt;DBName: testingDB&lt;BR /&gt;INSIDE of the SUBJOB:&lt;BR /&gt;Data File Folder: D:/tmp/Test/&lt;BR /&gt;DBName: testingDB&lt;BR /&gt; disconnected&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Fri, 02 Mar 2012 03:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344653#M112285</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-02T03:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344654#M112286</link>
      <description>Thank you Pedro for your quick response! 
&lt;BR /&gt;This is a very interesting concept - thank you for the clarification. 
&lt;BR /&gt;The job works as you explained it would. 
&lt;BR /&gt;Now, my next step is to load my context from database and transfer it over to Sub job. 
&lt;BR /&gt;All context variables are setup in Repository as Context Group. This Context Group is used in both "ContextLoad" and "DisplayContext" jobs. 
&lt;BR /&gt;This is how I have modified my job "ContextLoad": 
&lt;BR /&gt;1) add 3 new components: 
&lt;BR /&gt; - tConnection ( for database or it could be file - what ever works for you) 
&lt;BR /&gt; - tInput (specific to your choice above) I need 4 context variables to be loaded by this input: DBName, DataFileFolder, JobName and JobRunID 
&lt;BR /&gt; - tContextLoad component (click "Print Operation" to view loaded context) 
&lt;BR /&gt;2) Modify tJava component code as below: 
&lt;BR /&gt;System.out.println("BEFORE the SUBJOB:"); 
&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder")); 
&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName")); 
&lt;BR /&gt;System.out.println("JobName: " + context.getProperty("JobName")); 
&lt;BR /&gt;System.out.println("JobRunID: " + context.getProperty("JobRunID")); 
&lt;BR /&gt;context.JobRunID="2"; 
&lt;BR /&gt;System.out.println("BEFORE the SUBJOB and after changing JobRunID context:"); 
&lt;BR /&gt;System.out.println("JobRunID: " + context.getProperty("JobRunID")); 
&lt;BR /&gt; 
&lt;BR /&gt;Now Modify subjob "DisplayContext": 
&lt;BR /&gt;3) modify code in tJava component: 
&lt;BR /&gt;System.out.println("INSIDE of the SUBJOB:"); 
&lt;BR /&gt;System.out.println("Data File Folder: " + context.getProperty("DataFileFolder")); 
&lt;BR /&gt;System.out.println("DBName: " + context.getProperty("DBName")); 
&lt;BR /&gt;System.out.println("JobName: " + context.getProperty("JobName")); 
&lt;BR /&gt;System.out.println("JobRunID: " + context.getProperty("JobRunID")); 
&lt;BR /&gt;4) Run "ContextLoad" job. Here is an output: 
&lt;BR /&gt;Starting job ContextLoad at 12:42 02/03/2012. 
&lt;BR /&gt; connecting to socket on port 4062 
&lt;BR /&gt; connected 
&lt;BR /&gt;tContextLoad_1 set key "DataFileFolder" with value "D:/tmp/Test/" 
&lt;BR /&gt;tContextLoad_1 set key "DBName" with value "testing_derek" 
&lt;BR /&gt;tContextLoad_1 set key "JobName" with value "S301_test_context" 
&lt;BR /&gt;BEFORE the SUBJOB: 
&lt;BR /&gt;Data File Folder: D:/tmp/Test/ 
&lt;BR /&gt;DBName: testing_derek 
&lt;BR /&gt;JobName: S301_test_context 
&lt;BR /&gt;JobRunID: 1 
&lt;BR /&gt;BEFORE the SUBJOB and after changing JobRunID context: 
&lt;BR /&gt;JobRunID: 1 
&lt;BR /&gt;INSIDE of the SUBJOB: 
&lt;BR /&gt;Data File Folder: null 
&lt;BR /&gt;DBName: null 
&lt;BR /&gt;JobName: S301_test_context 
&lt;BR /&gt;JobRunID: 2 
&lt;BR /&gt; disconnected 
&lt;BR /&gt;Job ContextLoad ended at 12:42 02/03/2012. 
&lt;BR /&gt;Issue: 
&lt;BR /&gt;As you can see there is an issues: 
&lt;BR /&gt;1) I expect that all context variables loaded by tContextLoad component would be transferred to SubJob, but only one is transferred "JobName". Why other context variables are not transferred over? 
&lt;BR /&gt;Thank you in advance, 
&lt;BR /&gt;Elena</description>
      <pubDate>Fri, 02 Mar 2012 20:51:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344654#M112286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-02T20:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344655#M112287</link>
      <description>Hi Elena 
&lt;BR /&gt;Please show me the schema of tPostgresqlInput and settings of tRunjob. 
&lt;BR /&gt;I guess you didn't configure it with tContextLoad correctly. 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Pedro</description>
      <pubDate>Mon, 05 Mar 2012 05:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344655#M112287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-05T05:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344656#M112288</link>
      <description>Hi Pedro, 
&lt;BR /&gt;Please check your e-mail for images - I was not able to upload images via Forum 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;thanks again, 
&lt;BR /&gt;Elena</description>
      <pubDate>Thu, 08 Mar 2012 03:30:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344656#M112288</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-08T03:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344657#M112289</link>
      <description>Hi Pedro,
&lt;BR /&gt;Did you have a chance to look at this issue?
&lt;BR /&gt;Any help would be greately appreciated.
&lt;BR /&gt;Thank you in advance,
&lt;BR /&gt;elena</description>
      <pubDate>Sat, 10 Mar 2012 03:26:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344657#M112289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-10T03:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344658#M112290</link>
      <description>Hi Elena
&lt;BR /&gt;Sorry for my delay to answer.
&lt;BR /&gt;Are you sure you have added context "DataFileFolder" and "DBName" in DisplayContext_vars?
&lt;BR /&gt;From the images which you sent, I can't figure out the reason.
&lt;BR /&gt;You'd better export items of these two jobs and sent email to me.
&lt;BR /&gt;I will test it for you.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Pedro</description>
      <pubDate>Mon, 12 Mar 2012 02:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344658#M112290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-12T02:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344659#M112291</link>
      <description>Hi Pedro, 
&lt;BR /&gt;I think the Context vars are setup correctly - please see below the Job execution log: 
&lt;BR /&gt;As you can see tContextLoad_1 component is printing out the variables and values, including "DBName" and "DBFileFolder". 
&lt;BR /&gt;Than Java code is able to access these 2 variables in tJava_1 component - they are displayed in job log after title "BEFORE the SUBJOB:". 
&lt;BR /&gt;However, when SubJob is trying to access these variables - they are Null - they are displayed from SubJob in job log after title "INSIDE of the SUBJOB:". 
&lt;BR /&gt;I have exported the Job and all dependencies. 
&lt;BR /&gt;Please check your e-mail box for the file. 
&lt;BR /&gt;Thank you for all your time and support, 
&lt;BR /&gt;Elena 
&lt;BR /&gt; 
&lt;BR /&gt;Job Execution Log: 
&lt;BR /&gt;Starting job ContextLoad at 10:20 12/03/2012. 
&lt;BR /&gt; connecting to socket on port 3626 
&lt;BR /&gt; connected 
&lt;BR /&gt;tContextLoad_1 set key "DataFileServer" with value "yvr-etl-23-01" 
&lt;BR /&gt;tContextLoad_1 set key "DataFileFolder" with value "D:/tmp/Test/" 
&lt;BR /&gt;tContextLoad_1 set key "DataFileETLServer" with value "yvr-etl-23-01" 
&lt;BR /&gt;tContextLoad_1 set key "DataFileETLFolder" with value "D:/tmp/Test/" 
&lt;BR /&gt;tContextLoad_1 set key "DBServerHost" with value "localhost" 
&lt;BR /&gt;tContextLoad_1 set key "DBServerPort" with value "5432" 
&lt;BR /&gt;tContextLoad_1 set key "DBName" with value "testing_derek" 
&lt;BR /&gt;tContextLoad_1 set key "FiscalPeriod" with value "Y" 
&lt;BR /&gt;tContextLoad_1 set key "OrgHierarchy" with value "N" 
&lt;BR /&gt;tContextLoad_1 set key "CompensationMarketData" with value "N" 
&lt;BR /&gt;tContextLoad_1 set key "CompensationPayLevel" with value "N" 
&lt;BR /&gt;tContextLoad_1 set key "OrgHierarchyInd" with value "0" 
&lt;BR /&gt;tContextLoad_1 set key "DBSystemServerHost" with value "localhost" 
&lt;BR /&gt;tContextLoad_1 set key "DBSystemServerPort" with value "5432" 
&lt;BR /&gt;tContextLoad_1 set key "DBSystemName" with value "_base_etl" 
&lt;BR /&gt;tContextLoad_1 set key "DBPassword" with value "reisiv123" 
&lt;BR /&gt;tContextLoad_1 set key "DBUserName" with value "talenduser" 
&lt;BR /&gt;tContextLoad_1 set key "DBSystemUserName" with value "talenduser" 
&lt;BR /&gt;tContextLoad_1 set key "DBSystemPassword" with value "reisiv123" 
&lt;BR /&gt;tContextLoad_1 set key "JobName" with value "S301_test_context" 
&lt;BR /&gt;tContextLoad_1 set key "CustomerID" with value "1" 
&lt;BR /&gt;tContextLoad_1 set key "Status" with value "F" 
&lt;BR /&gt;tContextLoad_1 set key "Attr1" with value "200901" 
&lt;BR /&gt;tContextLoad_1 set key "Attr2" with value "Employee_200901.txt" 
&lt;BR /&gt;tContextLoad_1 set key "Attr3" with value """" 
&lt;BR /&gt;tContextLoad_1 set key "Attr4" with value """" 
&lt;BR /&gt;tContextLoad_1 set key "Attr5" with value """" 
&lt;BR /&gt;BEFORE the SUBJOB: 
&lt;BR /&gt;Data File Folder: D:/tmp/Test/ 
&lt;BR /&gt;DBName: testing_derek 
&lt;BR /&gt;JobName: S301_test_context 
&lt;BR /&gt;JobRunID: 1 
&lt;BR /&gt;BEFORE the SUBJOB and after changing JobRunID context: 
&lt;BR /&gt;JobRunID: 1 
&lt;BR /&gt;INSIDE of the SUBJOB: 
&lt;BR /&gt;Data File Folder: null 
&lt;BR /&gt;DBName: null 
&lt;BR /&gt;JobName: S301_test_context 
&lt;BR /&gt;JobRunID: 2 
&lt;BR /&gt; disconnected 
&lt;BR /&gt;Job ContextLoad ended at 10:20 12/03/2012.</description>
      <pubDate>Mon, 12 Mar 2012 17:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344659#M112291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-12T17:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344660#M112292</link>
      <description>Hi Elena 
&lt;BR /&gt;I import your jobs and change the postgresql parameters into my local DB. 
&lt;BR /&gt;It works fine. 
&lt;BR /&gt;Which version of TOS do you use? 
&lt;BR /&gt;Maybe you encounter a bug. 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Pedro</description>
      <pubDate>Tue, 13 Mar 2012 02:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344660#M112292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-13T02:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344661#M112293</link>
      <description>hi Pedro, 
&lt;BR /&gt;Our version is 5.0.1. 
&lt;BR /&gt;Which version do you use? 
&lt;BR /&gt;Maybe I should upload it and try to reproduce the issue? 
&lt;BR /&gt;Please advise. 
&lt;BR /&gt;Thanks again, 
&lt;BR /&gt;Elena</description>
      <pubDate>Tue, 13 Mar 2012 21:18:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344661#M112293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-13T21:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344662#M112294</link>
      <description>Hi Elena
&lt;BR /&gt;My TOS is also 5.0.1.
&lt;BR /&gt;I delved into the code in your job "ContextLoad" and found some useless methods in it.
&lt;BR /&gt;
&lt;PRE&gt;public void connectionStatsLogsProcess()&lt;/PRE&gt;
&lt;BR /&gt;This must be due to code generation issue.
&lt;BR /&gt;Now copy all these components into a new job.
&lt;BR /&gt;I guess this issue will be fixed.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Pedro</description>
      <pubDate>Wed, 14 Mar 2012 03:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344662#M112294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-14T03:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: tRunJob does not transfer Context variables when "Use dynamic job" sel</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344663#M112295</link>
      <description>Hi Pedro,
&lt;BR /&gt;Thank you for your detailed review of the code.
&lt;BR /&gt;I tried your suggestion.
&lt;BR /&gt;Unfortunately, it did not work for me.
&lt;BR /&gt;New Job has same issue - it is inconsistent with transferring Context variables to SubJob when Dynamic job is selected. 
&lt;BR /&gt;Please let me know if you have another suggestions.
&lt;BR /&gt;Thank you in advance,
&lt;BR /&gt;Elena</description>
      <pubDate>Wed, 28 Mar 2012 22:46:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tRunJob-does-not-transfer-Context-variables-when-quot-Use/m-p/2344663#M112295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-28T22:46:05Z</dc:date>
    </item>
  </channel>
</rss>

