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

Open Web browser

Former Member
0 Likes
3,500

How can I do to open the explorer when I click in a hipertext??

Thanks!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
961

This message was moderated.

8 REPLIES 8
Read only

Former Member
0 Likes
961

Hi,

try this Fm <b>CALL_BROWSER</b>.

Regards

vijay

Read only

Former Member
0 Likes
962

This message was moderated.

Read only

0 Likes
961

or you can also use..


call method cl_gui_frontend_services=>execute
  exporting
    document = 'https://websmp104.sap-ag.de/inbox'
  exceptions
    others   = 1.

Regards,

Suresh Datti

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
961



report zrich_0001
       no standard page heading
       line-size 300.

data:
           ifile_table type table of file_table,
           xfile_table type file_table,
            return type i..

parameters: p_app type file_table-filename
          default 'http:\www.sap.com'.

start-of-selection.

  data: app type string.

  app = p_app.
  call method cl_gui_frontend_services=>execute
    exporting
      application            =  app.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
961

TRY THE FM

WS_EXECUTE

WITH iexplore as PARAMETER

Read only

rahulkavuri
Active Contributor
0 Likes
961

There is more than one way to do this see the thread below and award points if found helpful

CALL FUNCTION 'CALL_BROWSER'

call function 'WS_EXECUTE'

Read only

Former Member
0 Likes
961

Hi,

Have look at this demo programs.

I think ur problem will be solved.

SAPHTML_DEMO1

SAPHTML_EVENTS_DEMO

RSDEMO_HTML_VIEWER

<comment_removed_by_moderator>

Regards

Manoj

Edited by: Julius Bussche on Oct 4, 2008 1:22 PM

Read only

Former Member
0 Likes
961

Thanks all!! I´ve got it!!