‎2008 Jun 04 7:12 PM
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
‎2008 Jun 05 1:23 AM
check this [link|http://searchsap.techtarget.com/generic/0,295582,sid21_gci1156933,00.html]
‎2008 Jun 04 7:25 PM
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.
‎2008 Jun 04 7:32 PM
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.
‎2008 Jun 05 1:23 AM
check this [link|http://searchsap.techtarget.com/generic/0,295582,sid21_gci1156933,00.html]