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

Hyper link in Dilog text using SE61

Former Member
0 Likes
1,097

Hi Friends,

Can you please give the steps, how to create Hyper link in the Dilog text using SE61.

When I click on the that hyper link (eg. Approver guid) it should open a file (Excel sheet) from the presentation server.

Thanks,

Dharmendra

Hi Friends,

Can you please give the steps, how to create Hyper link in the Dilog text using SE61.

When I click on the that hyper link (eg. Approver guid) it should open a file (Excel sheet) from the presentation server.

Thanks,

Dharmendra

1 REPLY 1
Read only

Former Member
0 Likes
485

Hi,

Try this FM

CALL_BROWSER

CALL FUNCTION 'CALL_BROWSER'

EXPORTING

URL = 'http://www.google.com '

  • WINDOW_NAME = ' '

  • NEW_WINDOW = ' '

  • BROWSER_TYPE = BROWSER_TYPE

  • CONTEXTSTRING = 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

Gokul