<?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 tSystem component on remote engine does nothing : permission issue ? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315364#M142686</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue with the tSystem component on remote engine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My use case is the following : I have to parse an Excel file, but it has a picklist and dynamic cells which update accordingly. So I loop over the picklist values. At each iteration:&lt;/P&gt;&lt;P&gt;1/ I use a tJava to update the picklist pragrammatically and force Excel to update its buffer (cell values) at opening&lt;/P&gt;&lt;P&gt;2/ A 1st tSystem calls a script "command_open.bat" which opens the Excel file&lt;/P&gt;&lt;P&gt;3/ A 2nd tSystem calls a script "command_save_close.bat", which calls a VBA script "CloseExcelWB.vbs" to save the buffer and close the file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the content of these 3 scripts at the end below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the studio (Cloud data integration 7.3.1), it works fine. When I parse the data inside the excel file I can see cells are updated. But on the remote engine (v2.10.4), which is on the same machin as the studio, the 2 tSystem components actually do nothing, without error message (TMC logs below as well). So I just have the picklist updated (the tJava part), but neither of the other cells. It could be that the 2 tsystem don't have the right permissions to access the scripts stored in the file system. There is a solution which points to the right direction to give the remote engine the proper permissions : &lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/Cloud/remote-engine-gen2-quick-start-guide/accessing-local-files-from-your-remote-engine" target="_blank"&gt;https://help.talend.com/r/en-US/Cloud/remote-engine-gen2-quick-start-guide/accessing-local-files-from-your-remote-engine&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this works only for Gen2 remote engine as far as I understand, and we have a standard one. The first step in the solution invokes a subdirectory "default" in the remote engine install directory, which does not exist in mine :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000HAoBlAAL.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155666i1CBD078A77FEC6DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000HAoBlAAL.png" alt="0695b00000HAoBlAAL.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== command_open.bat :&lt;/P&gt;&lt;P&gt;start "C:/Program Files/Microsoft Office/root/Office16/EXCEL.EXE" "tmp.xlsm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== command_save_close.bat:&lt;/P&gt;&lt;P&gt;ping localhost -n 5&amp;nbsp;&lt;/P&gt;&lt;P&gt;"C:/Users/svc_talend/Documents/Distrigo/tool/CloseExcelWB" "tmp.xlsm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== CloseExcelWB.vbs&lt;/P&gt;&lt;P&gt;Dim objExcel&lt;/P&gt;&lt;P&gt;Dim objWB&lt;/P&gt;&lt;P&gt;dim i&lt;/P&gt;&lt;P&gt;dim WB_To_Close&lt;/P&gt;&lt;P&gt;dim msg&lt;/P&gt;&lt;P&gt;if wscript.arguments.Count = 0 then&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Call Syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;wscript.quit&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;WB_To_Close = wscript.arguments.item(0)&lt;/P&gt;&lt;P&gt;set objExcel = GetObject(, "Excel.Application")&lt;/P&gt;&lt;P&gt;If UCase(WB_To_Close) = "ALL" then&lt;/P&gt;&lt;P&gt;&amp;nbsp;Do While ObjExcel.Workbooks.Count &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;set objWB = objExcel.Workbooks(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;objWB.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;objWB.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;Loop&lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt;&amp;nbsp;for i = 1 to objExcel.Workbooks.Count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;set objWB = objExcel.Workbooks(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;if UCase(&lt;A href="http://objwb.name/" target="_blank"&gt;objWB.Name&lt;/A&gt;) = UCase(WB_To_Close) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;objWB.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;objWB.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;exit for&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;next&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;if objExcel.Workbooks.Count = 0 then&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;objExcel.Quit&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;wscript.quit&lt;/P&gt;&lt;P&gt;Sub Syntax()&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = "Syntax: "&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "CloseExcelWB [All | WB Name to Close.xls?]"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;the All argument will save and close all WBs"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;WB Name is not case sensitive"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;Each WB to be closed is saved first"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;If no more WBs are in the instance of Excel, then"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;&amp;nbsp;the instance of Excel is closed, otherwise"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;&amp;nbsp;the Excel application is not closed."&lt;/P&gt;&lt;P&gt;&amp;nbsp;msgbox msg&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== TMC logs&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Command to execute: 'cmd /c command_open_sellin.bat'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Setting the parameters.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Root directory: 'C:/Users/svc_talend/Documents/Distrigo/tmp'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Executing the command.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Command to execute: 'cmd /c command_save_close_sellin.bat'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Setting the parameters.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Executing the command.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tLogRow_12 - Content of row 1: 2021-07-30 15:00:39|20210730150025_ZX9P6|20210730150025_ZX9P6|20210730150025_ZX9P6|INSIDBOARD|LoadKPI_distriGO_toPowerSlide_SellIn|Production_8229832789887098276|4|tWarn|tWarn_9|Il repassera par la|42&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Root directory: 'C:/Users/svc_talend/Documents/Distrigo/tmp'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tLogRow_12 - Printed row count: 1.&lt;/P&gt;&lt;P&gt;WARN | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tWarn_9 - Message: Il repassera par la. Code: 42&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 23:53:22 GMT</pubDate>
    <dc:creator>hamdi_bourbia</dc:creator>
    <dc:date>2024-11-15T23:53:22Z</dc:date>
    <item>
      <title>tSystem component on remote engine does nothing : permission issue ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315364#M142686</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue with the tSystem component on remote engine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My use case is the following : I have to parse an Excel file, but it has a picklist and dynamic cells which update accordingly. So I loop over the picklist values. At each iteration:&lt;/P&gt;&lt;P&gt;1/ I use a tJava to update the picklist pragrammatically and force Excel to update its buffer (cell values) at opening&lt;/P&gt;&lt;P&gt;2/ A 1st tSystem calls a script "command_open.bat" which opens the Excel file&lt;/P&gt;&lt;P&gt;3/ A 2nd tSystem calls a script "command_save_close.bat", which calls a VBA script "CloseExcelWB.vbs" to save the buffer and close the file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the content of these 3 scripts at the end below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the studio (Cloud data integration 7.3.1), it works fine. When I parse the data inside the excel file I can see cells are updated. But on the remote engine (v2.10.4), which is on the same machin as the studio, the 2 tSystem components actually do nothing, without error message (TMC logs below as well). So I just have the picklist updated (the tJava part), but neither of the other cells. It could be that the 2 tsystem don't have the right permissions to access the scripts stored in the file system. There is a solution which points to the right direction to give the remote engine the proper permissions : &lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/en-US/Cloud/remote-engine-gen2-quick-start-guide/accessing-local-files-from-your-remote-engine" target="_blank"&gt;https://help.talend.com/r/en-US/Cloud/remote-engine-gen2-quick-start-guide/accessing-local-files-from-your-remote-engine&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this works only for Gen2 remote engine as far as I understand, and we have a standard one. The first step in the solution invokes a subdirectory "default" in the remote engine install directory, which does not exist in mine :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000HAoBlAAL.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155666i1CBD078A77FEC6DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000HAoBlAAL.png" alt="0695b00000HAoBlAAL.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== command_open.bat :&lt;/P&gt;&lt;P&gt;start "C:/Program Files/Microsoft Office/root/Office16/EXCEL.EXE" "tmp.xlsm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== command_save_close.bat:&lt;/P&gt;&lt;P&gt;ping localhost -n 5&amp;nbsp;&lt;/P&gt;&lt;P&gt;"C:/Users/svc_talend/Documents/Distrigo/tool/CloseExcelWB" "tmp.xlsm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== CloseExcelWB.vbs&lt;/P&gt;&lt;P&gt;Dim objExcel&lt;/P&gt;&lt;P&gt;Dim objWB&lt;/P&gt;&lt;P&gt;dim i&lt;/P&gt;&lt;P&gt;dim WB_To_Close&lt;/P&gt;&lt;P&gt;dim msg&lt;/P&gt;&lt;P&gt;if wscript.arguments.Count = 0 then&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Call Syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;wscript.quit&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;WB_To_Close = wscript.arguments.item(0)&lt;/P&gt;&lt;P&gt;set objExcel = GetObject(, "Excel.Application")&lt;/P&gt;&lt;P&gt;If UCase(WB_To_Close) = "ALL" then&lt;/P&gt;&lt;P&gt;&amp;nbsp;Do While ObjExcel.Workbooks.Count &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;set objWB = objExcel.Workbooks(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;objWB.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;objWB.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;Loop&lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt;&amp;nbsp;for i = 1 to objExcel.Workbooks.Count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;set objWB = objExcel.Workbooks(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;if UCase(&lt;A href="http://objwb.name/" target="_blank"&gt;objWB.Name&lt;/A&gt;) = UCase(WB_To_Close) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;objWB.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;objWB.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;exit for&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;next&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;if objExcel.Workbooks.Count = 0 then&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;objExcel.Quit&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;wscript.quit&lt;/P&gt;&lt;P&gt;Sub Syntax()&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = "Syntax: "&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "CloseExcelWB [All | WB Name to Close.xls?]"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;the All argument will save and close all WBs"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;WB Name is not case sensitive"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;Each WB to be closed is saved first"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;If no more WBs are in the instance of Excel, then"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;&amp;nbsp;the instance of Excel is closed, otherwise"&lt;/P&gt;&lt;P&gt;&amp;nbsp;msg = msg &amp;amp; vbCrLF &amp;amp; "&amp;nbsp;&amp;nbsp;the Excel application is not closed."&lt;/P&gt;&lt;P&gt;&amp;nbsp;msgbox msg&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;== TMC logs&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Command to execute: 'cmd /c command_open_sellin.bat'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Setting the parameters.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Root directory: 'C:/Users/svc_talend/Documents/Distrigo/tmp'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.795+0000 | tipaas-jobserver-client:2.10.4 | tSystem_2 - Executing the command.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Command to execute: 'cmd /c command_save_close_sellin.bat'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Setting the parameters.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Executing the command.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tLogRow_12 - Content of row 1: 2021-07-30 15:00:39|20210730150025_ZX9P6|20210730150025_ZX9P6|20210730150025_ZX9P6|INSIDBOARD|LoadKPI_distriGO_toPowerSlide_SellIn|Production_8229832789887098276|4|tWarn|tWarn_9|Il repassera par la|42&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - Root directory: 'C:/Users/svc_talend/Documents/Distrigo/tmp'.&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tLogRow_12 - Printed row count: 1.&lt;/P&gt;&lt;P&gt;WARN | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tWarn_9 - Message: Il repassera par la. Code: 42&lt;/P&gt;&lt;P&gt;INFO | 2021-07-30T13:00:39.811+0000 | tipaas-jobserver-client:2.10.4 | tSystem_1 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315364#M142686</guid>
      <dc:creator>hamdi_bourbia</dc:creator>
      <dc:date>2024-11-15T23:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: tSystem component on remote engine does nothing : permission issue ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315365#M142687</link>
      <description>&lt;P&gt;Have you tried providing the full path to the scripts within the tSystem? &lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 05:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315365#M142687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-06T05:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: tSystem component on remote engine does nothing : permission issue ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315366#M142688</link>
      <description>&lt;P&gt;Hi Mr Sullivan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried. As before, only the tJava is effective, the 2 tSystem components still do nothing (although the TMC logs say their completion is successful). But this time, the execution freezes after the 2nd tSystem (tSystem_2) :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 14:03:24&lt;/P&gt;&lt;P&gt;Task 610122edd3b3ed698b51f408/8.8 execution 09538f89-1f32-4184-987b-a51494cc4736 has been completed with status EXECUTION_TERMINATED.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tSystem_2 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tSystem_2 - Executing the command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tSystem_2 - Command to execute: 'cmd /c C:/Users/svc_talend/Documents/Distrigo/tool/command_save_close_sellin.bat'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tSystem_2 - Root directory: 'C:/Users/svc_talend/Documents/Distrigo/tmp'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tSystem_2 - Setting the parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Warning2021-08-07 13:56:35&lt;/P&gt;&lt;P&gt;tWarn_3 - Message: Il repassera par la. Code: 42&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:34&lt;/P&gt;&lt;P&gt;tSystem_1 - Command to execute: 'cmd /c C:/Users/svc_talend/Documents/Distrigo/tool/command_open_sellin.bat'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:34&lt;/P&gt;&lt;P&gt;tSystem_1 - Setting the parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:34&lt;/P&gt;&lt;P&gt;tSystem_1 - The command has been executed successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Info2021-08-07 13:56:34&lt;/P&gt;&lt;P&gt;tSystem_1 - Executing the command.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Aug 2021 14:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315366#M142688</guid>
      <dc:creator>hamdi_bourbia</dc:creator>
      <dc:date>2021-08-07T14:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: tSystem component on remote engine does nothing : permission issue ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315367#M142689</link>
      <description />
      <pubDate>Sat, 07 Aug 2021 14:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315367#M142689</guid>
      <dc:creator>hamdi_bourbia</dc:creator>
      <dc:date>2021-08-07T14:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: tSystem component on remote engine does nothing : permission issue ?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315368#M142690</link>
      <description>&lt;P&gt;Hi Mr Sullivan,&lt;/P&gt;&lt;P&gt;Would you have another idea please ? Is there any people experiencing the same issue with (not Gen2) classical remote engine and tSystem components ? I couldn't find any discussion with this precise issue ...  I am a bit surprised since this is standard components after all.&lt;/P&gt;&lt;P&gt;Thank you very much for any additionnal help,&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 12:18:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSystem-component-on-remote-engine-does-nothing-permission-issue/m-p/2315368#M142690</guid>
      <dc:creator>hamdi_bourbia</dc:creator>
      <dc:date>2021-08-10T12:18:17Z</dc:date>
    </item>
  </channel>
</rss>

