<?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: Trigger UNIX Script from SAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041862#M86761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also go through this PDF file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/e42b73d3-ad7c-4549-9c4a-635cf2b12cfe/calling-UNIX-commands-in-ABAP.pdf" target="test_blank"&gt;http://esnips.com/doc/e42b73d3-ad7c-4549-9c4a-635cf2b12cfe/calling-UNIX-commands-in-ABAP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 20:08:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-19T20:08:41Z</dc:date>
    <item>
      <title>Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041858#M86757</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;The requirement is as follows :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP drops a file into a folder and triggers a UNIX script using a File Port partner destination.&lt;/P&gt;&lt;P&gt;Unix script will perform a secure copy to the Webmethods server.  If a Unix script error occurs, an Rfc function will be called to send an error notification to a particular contact  person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me how is the unix script triggered from SAP ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2005 05:37:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041858#M86757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-28T05:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041859#M86758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should create an external OS command (transaction SM59) which starts the script. You can then execute this command from within you ABAP program using FM SXPG_COMMAND_EXECUTE.&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;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2005 06:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041859#M86758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-28T06:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041860#M86759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a similar requirement. I read ur solution. I am not able to understand creating external OS command in SM59. Can please elaborate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Umesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 17:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041860#M86759</guid>
      <dc:creator>former_member154070</dc:creator>
      <dc:date>2006-09-19T17:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041861#M86760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can execute this sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: unix_cmd(50).&lt;/P&gt;&lt;P&gt;unix_cmd = 'chmod 664 /sapdata/DEV/home/travelers'.&lt;/P&gt;&lt;P&gt;translate   unix_cmd to lower case.&lt;/P&gt;&lt;P&gt;call 'SYSTEM' id 'COMMAND' field unix_cmd.&lt;/P&gt;&lt;P&gt;write: / sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Create and run a UNIX command programmatically&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The destination must be set up and configured from tcode SM59&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                              see note OSS 63930&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;rfcexec, this service must be started from UNIX&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;UX syntax to start service:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       rfcexec -aUNIX_COMMAND -g sap01 -x sapgw00 &amp;amp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       rfcexec        - program, /sapmnt/DEV/exe&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       UNIX_COMMAND   - program ID from SM59, case sensitive&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sap01          - AP_Gateway_hostname&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sapgw00        - Gateway_Service&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Transaction SMGW, monitor the gateway (Goto/Logged on clients)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*Number LU name  TP Name        Syst.type    Host name  Host address&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   0  sap01    sapgw00        LOCAL_R3       sap01    10.1.193.50&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; 233  sap01    UNIX_COMMAND   REGISTER_TP    sap01    10.1.193.50&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Could replace this unsupported SAP syntax,         Call 'SYSTEM'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*data: begin of tabl occurs 0,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; line(200),&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*end of tabl.&lt;/P&gt;&lt;P&gt;*call 'SYSTEM' id 'COMMAND' field comm&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             id 'TAB' field tabl-&lt;STRONG&gt;sys&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;data: command(256).&lt;/P&gt;&lt;P&gt;data : begin of ret occurs 10,           " results of unix command&lt;/P&gt;&lt;P&gt;        text(80),&lt;/P&gt;&lt;P&gt;      end of ret .&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;data: i_connected_systems type table of gwy_system.&lt;/P&gt;&lt;P&gt;data: w_connected_systems type  gwy_system.&lt;/P&gt;&lt;P&gt;data: w_message(80).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;parameter: p_junk(4) default 'Junk'.&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;call function 'GWY_READ_CONNECTED_SYSTEMS'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWHOST                          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWSERV                          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISCONNECT                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    connected_systems               = i_connected_systems&lt;/P&gt;&lt;UL&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;  GWY_UNKNOWN_OPCODE              = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_COMMUNICATION_FAILURE       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_GET_TAB_FAILED              = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_NEWLINE_FAILED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_TABLEN_TOO_SHORT            = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_GET_OPCODE_FAILED           = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_GET_GWHOST_FAILED           = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_GET_GWSERV_FAILED           = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GWY_MONITOR_DISABLED            = 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;read table i_connected_systems into w_connected_systems&lt;/P&gt;&lt;P&gt;           with key tpname = 'UNIX_COMMAND'.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;  perform display_error_messages.&lt;/P&gt;&lt;P&gt;  stop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;*COMMAND = 'ls '.                           " command&lt;/P&gt;&lt;P&gt;*COMMAND = 'ls -lt'.       " command, newest at top&lt;/P&gt;&lt;P&gt;command = 'ls -osra'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'RFC_REMOTE_PIPE'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DESTINATION 'SERVER_EXEC'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  destination 'UNIX_COMMAND'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    command  =   command&lt;/P&gt;&lt;P&gt;    read     =   'X'&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    pipedata =   ret.&lt;/P&gt;&lt;P&gt;loop at ret.&lt;/P&gt;&lt;P&gt;  write ret.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  Display_error_messages&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form display_error_messages .&lt;/P&gt;&lt;P&gt;  data: begin of listtab occurs 0,&lt;/P&gt;&lt;P&gt;        field(80),&lt;/P&gt;&lt;P&gt;        end of listtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  listtab-field = 'Program UNIX_COMMAND is not registered.'.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = 'Tell Basis person about the error'.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = ' '.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = 'UX syntax to start service: '.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = 'rfcexec -aUNIX_COMMAND -g sap01 -x sapgw00'.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = ' '.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;  listtab-field = 'Program  aborted,'.&lt;/P&gt;&lt;P&gt;  listtab-field+19 = sy-cprog.&lt;/P&gt;&lt;P&gt;  append listtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'POPUP_WITH_TABLE_DISPLAY_OK'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      endpos_col         =     70&lt;/P&gt;&lt;P&gt;      endpos_row         =     20&lt;/P&gt;&lt;P&gt;      startpos_col       =     10&lt;/P&gt;&lt;P&gt;      startpos_row       =     10&lt;/P&gt;&lt;P&gt;      titletext          =    'Registered program error'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CHOISE             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      valuetab           =  listtab&lt;/P&gt;&lt;UL&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;    BREAK_OFF          = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTHERS             = 2&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;endform.                    " Display_error_messages&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041861#M86760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041862#M86761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also go through this PDF file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/e42b73d3-ad7c-4549-9c4a-635cf2b12cfe/calling-UNIX-commands-in-ABAP.pdf" target="test_blank"&gt;http://esnips.com/doc/e42b73d3-ad7c-4549-9c4a-635cf2b12cfe/calling-UNIX-commands-in-ABAP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041862#M86761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041863#M86762</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; Go through the link for sample programs...&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.guidancetech.com/people/holland/sap/abap/" target="test_blank"&gt;http://www.guidancetech.com/people/holland/sap/abap/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041863#M86762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger UNIX Script from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041864#M86763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey now, if you're gonna link to my site (guidancetech.com), I should at least get some of the SDN points!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most of those sample programs were things I found on the 'net back in the mid 1990's so are probably very outdated, although they may still work.  Use them at your own risk...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of these days I need to clean those pages up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 21:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trigger-unix-script-from-sap/m-p/1041864#M86763</guid>
      <dc:creator>former_member192350</dc:creator>
      <dc:date>2006-09-19T21:27:31Z</dc:date>
    </item>
  </channel>
</rss>

