<?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: calling exe file. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319782#M164979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The print programs in F110 run in the background.  There is no way to call an exe on the frontend from a background job.&lt;/P&gt;&lt;P&gt;There are two options here:&lt;/P&gt;&lt;P&gt;1.  Run the print program manually (ie create a transaction or from SA38).  It will then run in the foreground and GUI_EXECUTE will work.&lt;/P&gt;&lt;P&gt;2.  Run the encryption program on the application server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution 2 is better, as running an encryption on the workstation is not good security.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 May 2006 05:44:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-12T05:44:13Z</dc:date>
    <item>
      <title>calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319770#M164967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on the Automatic payment transaction(f110).&lt;/P&gt;&lt;P&gt;while using this transaction i have to call the eft.bat file so that it can encrypt the file so that we can send this file to bank. issue is the place where im calling the eft.bat file is running in the background and when eftbat is being called it runs in the foreground .so in this case it throws the dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please any body can suggest how should i call any program&lt;/P&gt;&lt;P&gt;while running in the background and called third party program should also run in the background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ronie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Feb 2024 06:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319770#M164967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T06:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319771#M164968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try calling the method EXECUTE of the class CL_GUI_FRONTEND_SERVICES to execute the file. Or the function module WS_EXECUTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319771#M164968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319772#M164969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to call the FM &amp;lt;b&amp;gt;WS_EXECUTE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:07:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319772#M164969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319773#M164970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Ronie&lt;/P&gt;&lt;P&gt;WS_EXECUTE was Absolote in Higher versions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with the following Class &amp;amp; Methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: L_APP TYPE STRING.&lt;/P&gt;&lt;P&gt;L_APP = i_file.&lt;/P&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DOCUMENT               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    APPLICATION            = L_APP&lt;/P&gt;&lt;P&gt;    PARAMETER              = 'c:\temp\lgsmain'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DEFAULT_DIRECTORY      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MAXIMIZED              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MINIMIZED              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   SYNCHRONOUS            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OPERATION              = 'OPEN'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CNTL_ERROR             = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ERROR_NO_GUI           = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   BAD_PARAMETER          = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FILE_NOT_FOUND         = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PATH_NOT_FOUND         = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FILE_EXTENSION_UNKNOWN = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ERROR_EXECUTE_FAILED   = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   SYNCHRONOUS_FAILED     = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NOT_SUPPORTED_BY_GUI   = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   others                 = 10&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sreenivasulu Ponnadi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319773#M164970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319774#M164971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have used all these but situation remains the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;GUI_EXEC Replaces WS_EXECUTE. Start a File or Program Asynchronously with WinExec &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_RUN Start a File or Program Asynchronously with ShellExecute &lt;/P&gt;&lt;P&gt;WS_EXECUTE execute a program on a windows PC &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;Ronie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319774#M164971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319775#M164972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;i am using this!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DOCUMENT               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    APPLICATION            = 'c:\eft\startup.bat'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   PARAMETER              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DEFAULT_DIRECTORY      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MAXIMIZED              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MINIMIZED              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   SYNCHRONOUS            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    OPERATION              = 'OPEN'&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    CNTL_ERROR             = 1&lt;/P&gt;&lt;P&gt;    ERROR_NO_GUI           = 2&lt;/P&gt;&lt;P&gt;    BAD_PARAMETER          = 3&lt;/P&gt;&lt;P&gt;    FILE_NOT_FOUND         = 4&lt;/P&gt;&lt;P&gt;    PATH_NOT_FOUND         = 5&lt;/P&gt;&lt;P&gt;    FILE_EXTENSION_UNKNOWN = 6&lt;/P&gt;&lt;P&gt;    ERROR_EXECUTE_FAILED   = 7&lt;/P&gt;&lt;P&gt;    SYNCHRONOUS_FAILED     = 8&lt;/P&gt;&lt;P&gt;    NOT_SUPPORTED_BY_GUI   = 9&lt;/P&gt;&lt;P&gt;    others                 = 10&lt;/P&gt;&lt;P&gt;        .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&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;Ronie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319775#M164972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319776#M164973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;This is an example to open pdf file

CALL METHOD cl_gui_frontend_services=&amp;gt;execute
EXPORTING
* DOCUMENT =
APPLICATION = 'AcroRd32.exe'
PARAMETER = 'C:MY_FILE.PDF'
* DEFAULT_DIRECTORY =
* MAXIMIZED =
* MINIMIZED =
* SYNCHRONOUS =
* OPERATION = 'OPEN'
EXCEPTIONS
CNTL_ERROR = 1
ERROR_NO_GUI = 2
BAD_PARAMETER = 3
FILE_NOT_FOUND = 4
PATH_NOT_FOUND = 5
FILE_EXTENSION_UNKNOWN = 6
ERROR_EXECUTE_FAILED = 7
SYNCHRONOUS_FAILED = 8
NOT_SUPPORTED_BY_GUI = 9
others = 10
.
IF sy-subrc &amp;lt;&amp;gt; 0.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319776#M164973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319777#M164974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are running the Program in BACKGROUND none of them will work. since all of them will use Frontend. in BAckground it is not possible.&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:29:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319777#M164974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319778#M164975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ronie,&lt;/P&gt;&lt;P&gt;you cannot use the method CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE for calling an object in the background...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319778#M164975</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-09T11:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319779#M164976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so what should i do to do this any work around for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is really urgent!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ronie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319779#M164976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319780#M164977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try creating a OS command in SM69 for the batch file and execute that command using the function SXPG_COMMAND_EXECUTE. I think this will execute in background as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 11:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319780#M164977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-09T11:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319781#M164978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create an external job with transaction SM36.  I have run a Unix shell script with this method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 13:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319781#M164978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-11T13:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: calling exe file.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319782#M164979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The print programs in F110 run in the background.  There is no way to call an exe on the frontend from a background job.&lt;/P&gt;&lt;P&gt;There are two options here:&lt;/P&gt;&lt;P&gt;1.  Run the print program manually (ie create a transaction or from SA38).  It will then run in the foreground and GUI_EXECUTE will work.&lt;/P&gt;&lt;P&gt;2.  Run the encryption program on the application server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution 2 is better, as running an encryption on the workstation is not good security.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 05:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-exe-file/m-p/1319782#M164979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-12T05:44:13Z</dc:date>
    </item>
  </channel>
</rss>

