<?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: CL_GUI_FRONTEND_SERVICES =&amp;gt; EXECUTE doesn't execute a command. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864429#M1787945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not a Microsoft addict, but, when you create a batch, at first you have to define the environment variable. Because when you connect to a computer the system give you a set of variable. I'm not sure you have the same variable when you use the SAP method.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to open a commande prompt, and launch the "set" command, you will understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Oct 2013 09:17:04 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2013-10-30T09:17:04Z</dc:date>
    <item>
      <title>CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864422#M1787938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yesterday when using CL_GUI_FRONTEND_SERVICES =&amp;gt; EXECUTE method I ran into a weird problem. The problem is that I cannot correctly run a .bat batch file that is located in a client computer. I created a .bat file with few input parameters and when running it from my Windows computer then everything works spectacularly but when I try to run this using EXECUTE then it just doesn't run correctly. For testing purposes I hardcoded these parameters into the batch file and when running from Windows it runs a java utility. (The reason why I don't use EXECUTE to run the java utility directly is that the parameter string to this utility is more than 255 characters long but most of the parameter string is just static information and really only 20 characters change every run and that's why I created a .bat file). The problem is that when I execute this batch file from SAP then a file has to be created as a result and then I upload this file to server. When running locally this file is created correctly without any hassle but when calling it from SAP then it calls this java utility at client computer but it stops at some place and doesn't create the required file. This utility wasn't created by me so I cannot locate the place where it stops.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I use to execute the .bat file is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'"' &lt;/SPAN&gt;xml_dl_path &lt;SPAN class="L0S33"&gt;'" ' &lt;/SPAN&gt;PIN2 &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;sign_params RESPECTING BLANKS&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;CL_GUI_FRONTEND_SERVICES&lt;SPAN class="L0S70"&gt;=&amp;gt;&lt;/SPAN&gt;EXECUTE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; application&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'launch.bat'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; default_directory&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'C:\Tools\jdigidoc\'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S33"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; parameter&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = sign_params &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; synchronous&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'X'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minimized&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'X'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cntl_error&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; error_no_gui&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bad_parameter&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_not_found&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; path_not_found&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_extension_unknown &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; error_execute_failed&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; synchronous_failed&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not_supported_by_gui&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;9&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;10&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could it be that there are some weird authorization loopholes I have to jump thorugh before I can successfully run this bat file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 06:50:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864422#M1787938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-30T06:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864423#M1787939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rauno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you have deactivate the security option of the SAPgui ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regarsd&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 06:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864423#M1787939</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-10-30T06:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864424#M1787940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried with examples in note 77075?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 06:55:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864424#M1787940</guid>
      <dc:creator>JimRadiantExplorer</dc:creator>
      <dc:date>2013-10-30T06:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864425#M1787941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I did that and nothing changed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 07:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864425#M1787941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-30T07:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864426#M1787942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would be very useful note but this function is obsolete and as I stated in the question I don't even use it so I don't really see the importance of this note.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 07:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864426#M1787942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-30T07:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864427#M1787943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have check about variable environment ?&amp;nbsp;&amp;nbsp; example : the path of the executable prog, the directory ...&amp;nbsp; &lt;/P&gt;&lt;P&gt;Do you have created a log file to store some important value of the script .. ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 08:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864427#M1787943</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-10-30T08:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864428#M1787944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I said the execute command executes the .bat script. But it doesn't finish correctly. It searches for some dll files from the system and after that it stops working. Those dll files are essential to the java utility I'm acttivating from the batch script. When I run the same script from the client computer directly then it finds the dll files and runs as it should.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 08:11:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864428#M1787944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-30T08:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864429#M1787945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not a Microsoft addict, but, when you create a batch, at first you have to define the environment variable. Because when you connect to a computer the system give you a set of variable. I'm not sure you have the same variable when you use the SAP method.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to open a commande prompt, and launch the "set" command, you will understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 09:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864429#M1787945</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-10-30T09:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864430#M1787946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is that this batch file finds the environment variable. When the java utility starts looking the dll then this thing pops up into the cmd screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;JDigiDoc - 3.7.2.652&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Reading config file: jdigidoc-pkcs11.cfg&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Creating digidoc: DIGIDOC-XML / 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Format: DIGIDOC-XML ver: 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Adding data-file: C:\Users\Rauno Veberson\AppData\Local\SAP\SAP GUI\tmp\SEPA_PAYM0330.xml, text/xml, EMBEDDED_BASE64&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Format: DIGIDOC-XML ver: 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Signing digidoc&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Format: DIGIDOC-XML ver: 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;2013-10-29 13:34:34 [PKCS11SignatureFactory,INFO] initPKCS11; Loading PKCS11 driver: eTPKCS11.dll libpath: C:\Program Files\Java\jdk1.7.0_25\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Estonian ID Card\;C:\RUBY193\BIN;C:\PROGRAM FILES (X86)\INTEL\ICLS CLIENT\;C:\PROGRAM FILES\INTEL\ICLS CLIENT\;C:\Windows\SYSTEM32;C:\Windows;C:\Windows\SYSTEM32\WBEM;C:\Windows\SYSTEM32\WINDOWSPOWERSHELL\V1.0\;C:\PROGRAM FILES\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\DAL;C:\PROGRAM FILES\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\IPT;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\DAL;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\IPT;C:\PROGRAM FILES (X86)\INTEL\OPENCL SDK\2.0\BIN\X86;C:\PROGRAM FILES (X86)\INTEL\OPENCL SDK\2.0\BIN\X64;C:\PROGRAM FILES\COMMON FILES\LENOVO;C:\PROGRAM FILES (X86)\LENOVO\ACCESS CONNECTIONS\;C:\SWTOOLS\READYAPPS;C:\PROGRAM FILES (X86)\SYMANTEC\VIP ACCESS CLIENT\;C:\PROGRAM FILES (X86)\COMMON FILES\LENOVO;C:\PROGRAM FILES (X86)\INTEL\OPENCL SDK\2.0\BIN\X86;C:\PROGRAM FILES (X86)\INTEL\OPENCL SDK\2.0\BIN\X64;C:\IDU0080TOOLS\ANT182\BIN;C:\CURL-7.28.1-WIN64-NOSSL;C:\PROGRAM FILES (X86)\ESTONIAN ID CARD DEVELOPMENT\LIBDIGIDOC;C:\PROGRAM FILES\APACHE SOFTWARE FOUNDATION\TOMCAT 7.0_CATALINA\BIN;C:\PROGRAM FILES\INTEL\WIFI\BIN\;C:\PROGRAM FILES\COMMON FILES\INTEL\WIRELESSCOMMON\;C:\Program Files\Java\jdk1.7.0_25\bin;C:\Program Files\ThinkPad\Bluetooth Software\;C:\Program Files\ThinkPad\Bluetooth Software\syswow64;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\SafeNet\Authentication\SAC\x64;C:\Program Files\SafeNet\Authentication\SAC\x32;C:\Program Files\Java\jdk1.7.0_25\bin;C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\SafeNet\Authentication\SAC\x32\BSecClient;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it means that it found the environment variable it was looking for. However this is the last thing this batch file shows and after that - nothing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When it's successful then these line should be printed out aswell:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GET Cert in slot: 0&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Prepare signature, cert: OK status: true&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Format: DIGIDOC-XML ver: 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Finalize signature: S0 profile: TM sig-len: 256&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Format: DIGIDOC-XML ver: 1.3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;JDigiDoc end, time: 7 sec result: success&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864430#M1787946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-30T10:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864431#M1787947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you create a shortcut to your .bat file, and check the box "run as administrator", then execute this shortcut and not the .bat file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864431#M1787947</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-10-30T10:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864432#M1787948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I finally thought I'd give it a try and it seems to work now. Adding the path into the beginning of this .bat file made all the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PATH = %PATH%&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2013 10:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864432#M1787948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-11-05T10:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_FRONTEND_SERVICES =&gt; EXECUTE doesn't execute a command.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864433#M1787949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good news,&lt;/P&gt;&lt;P&gt;thank you for sharing your solution &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1925/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Fred&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2013 10:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-frontend-services-gt-execute-doesn-t-execute-a-command/m-p/9864433#M1787949</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-11-05T10:27:16Z</dc:date>
    </item>
  </channel>
</rss>

