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 linking

Former Member
0 Likes
640

how can i open a doc file by clicking a link

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
624

Hi

A very simple way to achieve this in an ABAP list is to use hotspot format

on your write statement and use fm WS_EXECUTE to launch the document.

Sample code:

Write: / field hotspot.

At Line Selection.

Call Function 'WS_EXECUTE'

Exporting Program = 'C:\Temp\word.doc'

Exceptions ....

Regards

Divya

5 REPLIES 5
Read only

Former Member
0 Likes
624

Just click it?

You need to provide a bit more information where you want the link to appear and where the document resides you want to link to. Depending on these the solution will be different.

Greetings,

Gert.

Read only

0 Likes
624

This message was moderated.

Read only

Former Member
0 Likes
625

Hi

A very simple way to achieve this in an ABAP list is to use hotspot format

on your write statement and use fm WS_EXECUTE to launch the document.

Sample code:

Write: / field hotspot.

At Line Selection.

Call Function 'WS_EXECUTE'

Exporting Program = 'C:\Temp\word.doc'

Exceptions ....

Regards

Divya

Read only

0 Likes
624

thanks divya , Dzed Maroz

will reward you if problem will get solve ...

thanks again

Read only

Former Member
0 Likes
624

Hello

Look at: CL_GUI_HTML_VIEWER