‎2008 Dec 01 1:39 PM
Hi All,
I have a requirement of adding hyperlink to the report documentation.
when user click on that hyperlink (ex: www.yahoo.com), that link have to open.
Can anyone help me in getting the same.
Thanks in advance.
Best Regards,
Deepa Kulkarni
‎2008 Dec 01 1:49 PM
‎2008 Dec 01 1:40 PM
Report documentation? U mean u need a hyperlink in source code documentation? Well I don't think thats possible... You can provide the URL there and ask users to open it in browser
‎2008 Dec 01 1:42 PM
Hi,
Thank you very much for your reply.
when we maintain documentation for the report,
in that i want to add hyperlink.
Regards,
Deepa Kulkarni
‎2008 Dec 01 1:51 PM
Oh! Use <ds:repn.zz_report_name>http://www.google.com in ur docu
‎2008 Dec 02 6:49 AM
Hi,
Thnak you very much for your reply. I am sorry for late reply.
i tried the same thing.
when i click on the hyperlink another window is openin
but the link which i am giving is not opening.
Please help me in opening the link provided.
Thanks and Best Regards,
Deepa Kulkarni
‎2009 Feb 24 12:42 PM
Hi Deepa,
I am also facing the same problem.
The code "<DS:REPN.ZYH_URLDEMO>https://www.google.com</>" is not working.
If you have got the solution, plz help me out.
Regards,
Yogita.
‎2008 Dec 01 1:42 PM
‎2008 Dec 01 1:49 PM
‎2009 Feb 24 12:49 PM
Use FM CALL_BROWSER
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
URL = 'www.yahoo.com '
* WINDOW_NAME = ' '
* NEW_WINDOW = ' '
* BROWSER_TYPE =
* CONTEXTSTRING =
* 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.
‎2009 Feb 25 7:01 AM
Hi Karan,
Thank you very much for your reply.
My issue is resolved.
the FM you have provided will not help me as i was trying to get the hyperlink in report documentation.
Thank you very much again.
Regards,
Deepa Kulakrni