Application Development 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: 

Use HYPERLINK In ALV

former_member541575
Participant
0 Kudos

Hi

i have requirement to add a hyperLink in ALV Report Output.

i have added the following code in my code but hyperlink('www.google.com' ) is not showing in the report output and when i execute the report then 'www.google.com' opens in the web browser.

write : 'www.google.com' hotspot on.

CALL FUNCTION 'CALL_BROWSER'

EXPORTING

url = 'www.google.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.

Regards

Atul

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

Check this

and just use the code in my post.

2 REPLIES 2

former_member188685
Active Contributor
0 Kudos

Check this

and just use the code in my post.

Former Member
0 Kudos