2009 Jun 23 10:32 AM
How can we access website through ABAP Code?
2009 Jun 23 10:33 AM
2009 Jun 23 10:35 AM
Hi,
Use these FM's
CALL_INTERNET_ADRESS or,
call_browser
CALL FUNCTION 'CALL_INTERNET_ADRESS'
EXPORTING
pi_adress = lv_url. <------ The website you want to access eg. www.google.com
Else use the other one in the same way...
Edited by: sneha singhania on Jun 23, 2009 3:10 PM
2009 Jun 23 12:00 PM
Hi Prerna,
Create One custom container .
Use this Class CL_GUI_HTML_VIEWER.
data :html_doc type ref to cl_gui_html_viewer.
Use this method of CL_GUI_HTML_VIEWER
CALL METHOD HTML_DOC->SHOW_URL
EXPORTING
URL = DOC_URL
Regards,
Lakshman.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |