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: 

Hyper link in Dilog text using SE61

Former Member
0 Kudos

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

Former Member
0 Kudos

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