2006 Nov 20 10:45 AM
hi every body,
Is there any way of calling a web page or bsp application from with in the abap program, so that the browser and web application can be initiated from with in the sap automatically.
(we should not perform any manual entries or interactions)
thanks in advance,
regards,
mounika.
hi every body,
Is there any way of calling a web page or bsp application from with in the abap program, so that the browser and web application can be initiated from with in the sap automatically.
(we should not perform any manual entries or interactions)
thanks in advance,
regards,
mounika.
2006 Nov 20 10:48 AM
u need to attach the web page or bsp to the abap...this can be done...once u run the page is displayed.
2006 Nov 20 10:48 AM
2006 Nov 22 9:50 AM
Hi Suresh,
Thank you very much for your reply. Can I know whether this function module "call_browser" is supported by lower versions of SAP i.e from 3.0A onwards?
Please let me know.
Thanks in advance,
regards,
mouni.
2006 Nov 22 10:03 AM
for older releases you can use FM WS_EXECUTE
pass the url to commandline parameter (say http://www.yahoo.com) and
pass the location of the IE exe to program parameter (C:\Program Files\Internet Explorer\iexplore.exe)
Regards
Raja
2006 Nov 22 10:10 AM
Hi ,
Use FM :
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
url = w_url
* WINDOW_NAME = ' '
new_window = 'X'
* BROWSER_TYPE = BROWSER_TYPE
* CONTEXTSTRING = 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.
2006 Nov 20 10:49 AM
2006 Nov 20 10:55 AM
Hi,
you may use class.
method fill_html.
call method html_viewer->show_url exporting url = c_myurl.
endmethod.
Regards,
Amit
2006 Nov 20 11:00 AM
you want to call a webpage and show that within the sapgui environment? or call a web url to collect data?
Regards
Raja
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |