2008 Jul 16 12:35 PM
How to call internet explorer in the program?
2008 Jul 16 12:41 PM
use FM
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
URL = 'http://www.sap.com'
2008 Jul 24 12:44 PM
Hi parveen,
This FM can help you.
CALL FUNCTION 'WS_EXECUTE'
EXPORTING
program = 'C:\Program Files\Internet Explorer\IEXPLORE.EXE'
commandline = 'http://www.taobao.com'
INFORM = ''
EXCEPTIONS
PROG_NOT_FOUND = 1.
Reward points if helpfull.
cheers,
sowjanya.
2008 Jul 24 1:00 PM
Hi Parveen Yadav,
The best way is to use CALL_BROWSER Function Module
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
URL = '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 <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.Hope it will solve your problem..
Thanks & Regards
ilesh 24x7
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |