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

Accessing website through ABAP

Former Member
0 Likes
618

How can we access website through ABAP Code?

How can we access website through ABAP Code?

3 REPLIES 3
Read only

Former Member
0 Likes
551

Refer the Report SAPHTML_DEMO1

Read only

Former Member
0 Likes
551

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

Read only

Former Member
0 Likes
551

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.