‎2006 Nov 21 3:07 PM
‎2006 Nov 21 3:09 PM
Hi
U should use the option HOTSPOT, but you should explain what you exactly need to do.
Max
‎2006 Nov 21 3:11 PM
check the below ones...
SIMO_OBJECT_EDIT
SIMO_OBJECT_SHOW
SIMO_OBJECT_TITLE
DSYS_OUTLINE_OBJECTS
DSYS_SHOW_FOR_F1HELP
SIMO_OBJECT_SHOWX
SIMO_OBJECT_TITLEX
V80P_PAOBJ_SETZEN
‎2006 Nov 21 3:11 PM
‎2006 Nov 21 3:13 PM
Hi shilpa,
It is possible with the GUI function modules.
You can call GUI_RUN Function module with
Command as IEXPLORE.EXE and parameter as WWW.GOOGLE.COM, it will work.
regards,
keerthi
‎2006 Nov 21 3:15 PM
Hi Shilpa,
In addition to Max's suggestion, please check this sample program from other thread.
report zrich_0001.
data: begin of itab occurs 0,
url(1000) type c,
end of itab.
itab-url = 'http:\www.sap.com'. append itab.
itab-url = 'http:\help.sap.com'. append itab.
itab-url = 'http:\www.sdn.sap.com'. append itab.
itab-url = 'http:\www.bpx.sap.com'. append itab.
loop at itab.
format hotspot on.
write:/ itab-url.
hide itab-url.
format hotspot off.
endloop.
at line-selection.
data: url type string.
url = itab-url.
call method cl_gui_frontend_services=>execute
exporting
document = url.Hope this will help.
Regards,
Ferry Lianto
‎2006 Nov 21 3:18 PM
REPORT zkb_test.
DATA: v_string TYPE string VALUE 'http://sap.com'.
START-OF-SELECTION.
WRITE / v_string HOTSPOT ON.
AT LINE-SELECTION.
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
url = 'http://sap.com'
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.
Regards
Kathirvel