‎2006 May 30 4:16 PM
How can I do to open the explorer when I click in a hipertext??
Thanks!
‎2006 May 30 4:20 PM
‎2006 May 30 4:19 PM
‎2006 May 30 4:20 PM
‎2006 May 30 4:22 PM
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
‎2006 May 30 4:22 PM
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
‎2006 May 30 4:23 PM
‎2006 May 30 4:23 PM
‎2006 May 30 4:26 PM
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
‎2006 May 30 4:32 PM