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

Hyperlink in Long text

Former Member
0 Likes
4,632

Hello!

Tell me please how I insert url into Long text editor?

11 REPLIES 11
Read only

Former Member
0 Likes
3,203

Vladimir,

Use CONCATENATE Statement for example

data:v_string type string.

text = 'hihello'

url  = www.google.com'

now CONCATENATE text url into v_string separated by space.

Regards,

Siva rama krishna mohan G.

Read only

0 Likes
3,203

Ok, but I told about http://help.sap.com/saphelp_nw04/helpdata/en/77/571d0e492011d1894a0000e829fbbd/content.htm

I need Hyperlink in mm02->Basic data text (Long text)

Read only

0 Likes
3,203

Is this what you mean? Or do you want the url to be clickable? Or something else maybe?

Read only

0 Likes
3,203

Exactly! but can it was clickable?

Read only

0 Likes
3,203

I was already afraid you would want that... To my knowledge that is not possible, and the other abappers here do not know this either. If someone else has an idea on this, please share.

Read only

0 Likes
3,203

Thanks! 🙂

Then I start this discussion I afraid about this answer 🙂

Read only

0 Likes
3,203

AFAIK cl_gui_textedit (used in MM02) don't have this option, just plain text. You get a better chance with

- Full screen editor (can be Microsoft Word driven) but you wont be able to click on it when back to MM02 standard dynpro

-> back MM02

-> click on text editor once again

Hyperlink lost

- GOS attachments toolbar    

Regards,

Raymond

Read only

0 Likes
3,203

Thanks, I know about GOS, it it was a fallback variant.

In sap.help I find something like that:

Online-executable report

<DS:REPO.name>Name_in_text</>

http://help.sap.com/saphelp_470/helpdata/ru/3c/aba276413911d1893d0000e8323c4f/content.htm

But I don't understand how it works..

Read only

0 Likes
3,203

Yup, these came up with google search. However, these solutions all seem to have th issue that the URL is not visible in the LT as requested by Vladimir. You still have to go to the GOS or full screen editor.

Read only

0 Likes
3,203

Those solution work with SapScript Editor CL_GUI_SAPSCRIPT_EDITOR and the not plain text Editor CL_GUI_TEXTEDIT that the transaction calls.

Regards,

Raymond

Read only

0 Likes
3,203

try this