‎2006 Jun 28 12:41 AM
I want to output a HYPERLINK to the Enduser when they run a Script, based on the input they give the HYPERLINK will be varied.
Whether it is possible in ABAP? Whats the syntax to achieve the above task.
Thanks.
‎2006 Jun 28 12:44 AM
‎2006 Jun 28 12:44 AM
‎2006 Jun 28 12:48 AM
‎2006 Jun 28 12:49 AM
Thanks Rich. I want to achieve this thru ABAP.
How to do that? and what is the SYNTAX?
Thanks.
‎2006 Jun 28 12:50 AM
hi Rohini,
I guess it is not possible to do that way with ABAP relating to SAP Scripts ...
‎2006 Jun 28 12:51 AM
Here is a sample program of how it can be done within an ABAP list display.
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.
Regards,
Rich Heilman
‎2006 Jun 28 12:53 AM
IN simple terms, in my ABAP Report program I want to do
Write: 'Please Click the hyperlink ', www.google.com.
I want to make www.google.com as a Hyperlink.
Thanks.