<?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 third party software in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914915#M938460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friends&lt;/P&gt;&lt;P&gt;if somebody knows then please help me &lt;/P&gt;&lt;P&gt;tell me how to use third party software in sap.&lt;/P&gt;&lt;P&gt;like dos-prompt or internet exploreretc.&lt;/P&gt;&lt;P&gt;thanks in advanca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 18:12:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T18:12:08Z</dc:date>
    <item>
      <title>third party software</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914915#M938460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friends&lt;/P&gt;&lt;P&gt;if somebody knows then please help me &lt;/P&gt;&lt;P&gt;tell me how to use third party software in sap.&lt;/P&gt;&lt;P&gt;like dos-prompt or internet exploreretc.&lt;/P&gt;&lt;P&gt;thanks in advanca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 18:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914915#M938460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T18:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: third party software</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914916#M938461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's to call the browser&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
START-OF-SELECTION.
  CALL FUNCTION 'CALL_BROWSER'
       EXPORTING
            url                    = 'http://www.yahoo.com/'
            window_name            = ' '
            new_window             = ' '
*            browser_type           =
*            contextstring          =
       exceptions
            frontend_not_supported = 1
            frontend_error         = 2
            prog_not_found         = 3
            no_batch               = 4
            unspecified_error      = 5
            OTHERS                 = 6.
  IF sy-subrc NE 0.
*
*    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
*    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 18:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914916#M938461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T18:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: third party software</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914917#M938462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's your DOS Window&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD cl_gui_frontend_services=&amp;gt;execute
  EXPORTING
    application            = 'CMD.EXE'
    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
    OTHERS                 = 8.

IF sy-subrc &amp;lt;&amp;gt; 0.
  sy-subrc = sy-subrc.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 18:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914917#M938462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T18:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: third party software</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914918#M938463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this [link|http://searchsap.techtarget.com/generic/0,295582,sid21_gci1156933,00.html]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 00:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/third-party-software/m-p/3914918#M938463</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-06-05T00:23:29Z</dc:date>
    </item>
  </channel>
</rss>

