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

getting hyperlink in report documentation.

Former Member
0 Likes
1,063

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

1 ACCEPTED SOLUTION
9 REPLIES 9
Read only

former_member189629
Active Contributor
0 Likes
1,031

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

Read only

0 Likes
1,031

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

Read only

0 Likes
1,031

Oh! Use <ds:repn.zz_report_name>http://www.google.com in ur docu

Read only

0 Likes
1,031

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

Read only

0 Likes
1,031

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.

Read only

former_member203501
Active Contributor
Read only

Former Member
0 Likes
1,031

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.

Read only

0 Likes
1,031

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