Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

third party software

Former Member
0 Likes
502

hello friends

if somebody knows then please help me

tell me how to use third party software in sap.

like dos-prompt or internet exploreretc.

thanks in advanca

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
477

check this [link|http://searchsap.techtarget.com/generic/0,295582,sid21_gci1156933,00.html]

3 REPLIES 3
Read only

Former Member
0 Likes
477

Here's to call the browser


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.

Read only

Former Member
0 Likes
477

Here's your DOS Window


CALL METHOD cl_gui_frontend_services=>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 <> 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.

Read only

former_member156446
Active Contributor
0 Likes
478

check this [link|http://searchsap.techtarget.com/generic/0,295582,sid21_gci1156933,00.html]