How to insert a hyperlink in ABAP documentation

In SE38 you can create your own online documentation. I want to insert a hyperlink in this documentation so that when the user clicks the 'I' icon, he can click directly on the hyperlink in the documentation.
In my research I found that when you are editing the documentation, you must choose Insert -> Link. Once I click that, I get a popup asking for the following fields:
Document Class:
"Field based on what Document Class is chosen":
Name in Document:
Does anyone know what I need to fill in those fields?
Thank you,
Brenda

Hi Brenda,
I'm glad to know it works, up to this limit. In my system, this limit is 60 characters (SAP_BASIS 7.0 SP 13).
I think we can't go beyond this limit, but there's a workaround, used by KENO (URL to SAP library) document class for example.
You link your document class to a function module exit, by entering the function module prefix in TDCLD-DOKEDICL field. Entering a value XXXX means that SAP will call function modules XXXX_OBJECT_TITLE and XXXX_OBJECT_SHOW. I recommend to use KENO as a template.
For example, you can enter the following code in XXXX_OBJECT_SHOW :
  data l_url(65535).
  case dokname.
    when 'A1'.
      l_url = 'http://help.sap.com/saphelp_nw70/helpdata/en/07/bf5bfa83404c6a9ed9858bcb0d46d1/frameset.htm'.
  endcase.
  if l_url is not initial.
    call function 'CALL_BROWSER'
      exporting
        url                    = l_url
      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.
  endif.
Then, in your document, you enter :
<DS:XXXX.A1>click me</>
Clicking it will display the SAP library
Of course, instead of hardcoding the values in the function module ("A1"), you will use other means to get the URL from Solution Manager, using a key of 60 characters maximum. This would be another question if you don't know how to get it.
Best regards,
Sandra

Similar Messages

  • Can anyone advise me how to insert a hyperlink into a project I am using Captivate 5?

    Can anyone advise me how to insert a hyperlink into a project - I am using Captivate 5

    You can use an interactive object such as a click box placed over the top of a text caption, or a button, to link to the URL.  However, these will not strictly-speaking appear identical to hyperlinks.
    If you really want to replicate the rollover appearance of a true HTML text hyperlink, then you might consider the Hyperlink widget from Infosemantics:
    http://www.infosemantics.com.au/adobe-captivate-widgets/hyperlink-interactive/help
    Free trial versions for download hers:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

  • How to insert a HYPERLINK in a template Editable Field?

    Question:  How to insert a HYPERLINK in a template Editable Field?
    Hi
    Does anyone know how to insert a HYPERLINK in a template Editable Field?
    I want the link to always display the word "Cities".
    But the URL will change with each child page.
    Here's what I've got so far . . .
    <!-- TemplateBeginEditable name="Cities" -->Cities<!-- TemplateEndEditable -->
    Thanks so much!

    NOTE: This is to go into the TEMPLATE
    Your best bet is to keep the hyperlink OUT of the editable Field and to make the HREF attribute of the link editable.
    This would go in the head of your document:
    <!-- TemplateParam name="href" type="URL" value="" -->
    This would go where you want the link to appear:
    <a href="@@(href)@@">cities</a>
    THE BETTER WAY: You can either paste these quotes into the appropriate places in your template or you can insert:
    <a href="#">cities</a>
    and click inside the opening <a> tag.
    Then go to Modify > Templates > Make Attribute Editable
    In the dialog box "Editable Tag Attributes" you should now see "Choose which attributes of this A tag should be editable."
    If HREF is not showing in the drop-down, do Add and put it there.
    Check the box to Make this attribute editable.
    Give a name for this editable attribute (if you have more than one on a page, you will want it to be understandable, like "cities" for your cities links).
    Make sure it is of Type URL
    If you want a default URL in place, put one in the Default field.
    Then push OK.
    To use it, on each page, do Modify > Template Properties... choose the property to edit, and put the new URL in the entry field.
    Press OK.
    Beth

  • How to insert a hyperlink to RETURN TO FRONT PAGE?

    I just now played a photo slide show that I made last night. There is no way to exit that page to go back to the Table of Contents page/Site Menu.
    How do I insert a hyperlink in all the pages so a visitor can return to the first page, or at least to the Table of Contents page/Site Menu.
    Also, there was no navigation bar on the slide show. Instead, there were clickable thumbnails of the slide show. Is this as iWeb made it to be?
    — Lorna in Southern California

    Sorry to bother you, but i did find the answer to my question by going to the Help Menu, which I forgot all about in my concern. So to keep this from being a total waste of your time, here are the instructions for making a hyperlink to another page. Again, I apologize. -Lorna
    Adding a text hyperlink
    You can create a text hyperlink that opens a webpage or a new email message, or downloads a file.
    To add a text hyperlink using the Link Inspector:
    1. Select the text you want to turn into a hyperlink.
    2. If the Link Inspector isn't open, click Inspector in the toolbar (or choose View > Show Inspector), and then click the Link Inspector button.
    3. In the Link Inspector, select "Enable as a hyperlink," and then choose an option from the Link To pop-up menu:
    • One of My Pages: Opens another page in any of your iWeb websites. Choose the page from the Page pop-up menu.
    • An External Page: Opens any webpage for which you know thethe website address. Type the address in the URL field.
    • A File: Downloads a file to the visitor's computer. (The file is part of your website; visitors won't have access to your computer.)
    • An Email Message: Opens a new email message containing the email address and subject you specify.

  • How to insert a hyperlink into a Paragraph text

    hi everybody~
    for example:
    this encourages people to answer for points and helps you track answers.
    how can I insert a hyperlink in the word:"answer for points"?
    Louis.

    Hi Louis,
    Write the following code in your compositionReady event handler :
    var text_answer = "this encourages people to";
    text_answer += "<a target='_blank' href='http://www.<etc.>'>answer for points</a>";
    text_answer += "and helps you track answers.<br>";
    sym.$("<textElementName>").html( text_answer);
    // or if needed sym.getSymbol("<symbolInstanceName>").$("<textElementName>").html( text_answer);
    Gil

  • How to insert a hyperlink in mail content for workflow

    Experts,
    I want to insert a hyperlink in mail content when i use sendmail type step in workflow.
    How to do it?
    Thanks you very much!

    Hi, Venkat
      Thanks you for your help!
      I try to use '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>' in the mail, but
      my outlook display the mail content is '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>',
      is not a hyperlink.
    Ken.Li

  • How to insert Method in ABAP code

    Hi Gurus,
    Plz tell me how to insert a METHOD in ABAP code as we do in the case of inserting function in ABAP code using PATTERN.Button
    Rgds
    rajesh

    Hi,
    Try this.
    Click pattern tab ans select AABAP object patterns.
    Select call method.
    Then give the instance name , class/interface name and the method name.
    Sharin.

  • Inserting a hyperlink in Safari on iPad2

    How to insert a hyperlink in the body of a message in a Safari email on an iPad2?

    [iPad User Manual|http://manuals.info.apple.com/enUS/ipad_2_userguide.pdf|when you click this blue text, and amazing thing happens! a pdf starts to load]
    Page 21

  • How to add a hyperlink in the text caption?

    Hi,
    I am using Captivate 5. Anybody knows how to insert a hyperlink in a text caption? For example, the texts in the text caption are "See Adobe Captivate Forum for details." How to create a hyperlink for "Adobe Captivate Forum" which leads to the forum website?
    Thanks,
    Helen

    There is no tru hyperlink object in Captivate as such.
    You can use a button or a click box to provide users with an interactive object that when clicked will call a URL or document.
    However, this doesn't really give you a mouse rollover effect the way users are accustomed to seeing in normal web hyperlinks.
    If you really want to add a piece of on screen hyperlinked text (with rollover effect) to a Captivate project, the closest you'll come to it is this widget: http://www.infosemantics.com.au/hyperlink

  • How to insert the image or logo into the table as a field in webdynpro abap

    Hi Friends,
    Please tell me how to insert the image or logo into the table as a field in webdynpro abap.........

    Hi Alagappan ,
          In your view layout you take table UI element and then you bind it with some context nodes.
    The attributes of your nodes comes as a field.
    Now in these fields you can set various properties and image is one of them.
    Go to ->
    1. View Layout -> Right Click on ROOTUIELEMENTCONTAINER -> INSERT ELEMENT -> TABLE
    2. Right click on table -> Create Binding.
       Here you have to bind it with the appropriate context node.
    You will get two properties here
    a- Standard Cell Editor :- ( make it image )
    b- Standard properties :- ( If required set image properties ).
    3. If you want put image from out side then import it as a mime object and set the source of your table field ( used as a image )
    also have a look :-
    [Image Properties|http://help.sap.com/saphelp_nw04/helpdata/en/f3/1a61a9dc7f2e4199458e964e76b4ba/content.htm]
    Hope this will solve your problem.
    Reply if any case of any issue.
    Thanks & Regards,
    Monishankar C

  • How do I insert a hyperlink in Fireworks?

    How do I insert a hyperlink in Fireworks? I had to create it
    in Dreamweaver, but when I previewed it, when I passed the mouse
    over the link phrase it dissapears. Is it possible to do it in
    Fireworks?

    There are times when you would insert a url into fireworks, such as creating hotspots or pop-up menus. You may do so from the properities panal at the bottom of the screen. I've read that you nust insert the entire url when doing so: http//www.filename.html, but I was unsure. I was hoping to confirm this. If you can do it in dreamweaver, even with popuus that would be better.

  • How do I insert a hyperlink in an e-mail?

    when I compose an e-mail, occasionally I would like to insert a hyperlink. I can do this operation if I use a browser other than Firefox.
    I am using Microsoft XP. I am trying to do this operation using Mozilla Firefox. How do I accomplish this?

    Webmail sites typically have a link tool that appears on the formatting bar above the compose box. The specifics might vary but generally speaking, if you click the button for the link tool, paste the link, then OK that, a link should be inserted at the current cursor position.
    To see what I mean for Yahoo! mail, check out this thread: [https://support.mozilla.org/en-US/questions/938081 url is not highlighted when sending it on an email and cannot be directly accessed].
    Does that help?

  • How do I insert a hyperlink in Keynote 6.1?

    How do I insert a hyperlink in Keynote 6.1?  The newer verision is very difficult to find previous commands and I do not like the Inspector.  So many options have been removed.

    Right click an object on the Keynote canvas > Insert Link

  • Inserting a hyperlink in .ppt does not work. How to do it ?

    I want to insert y hyperlink to an .xls and am using the prescribed 'insert link - file ' method however there where the file should be selected from my Documents (in Finder) - I keep seeing the turning wheel.
    What should I do differently ?
    Thanks in advance for your help.....
    Rgds

    Hi, Pieterst!
    This is somewhat of a standard reply **, but reinstalling Office 2011 might (vielleicht) address problems that you may be experiencing.
    The current version of Office 2011 is 14.4.8.
    First - find your Office 2011 install disc with the product key # - and only then remove Office according to MS instructions
    http://support.microsoft.com/kb/2398768
    Or go here to DianefromOregon's site for help removing Office 2011:
    http://www.officeformachelp.com/2012/12/office-for-mac-2011-remove-office/
    Then Reinstall from DVD
    Then enter your Product #
    After successfully reinstalling Office 2011,  update your Office product using the Software update within Office called Microsoft Update or going to the Help menu within Word or Excel or PowerPoint and select Update.
    It may take a few times before you get to final upgrade to current Office version.
    It should be 14.4.8 as of current date.
    How to locate product keys
    http://support.microsoft.com/kb/2279109
    or here on locating product keys
    http://office.about.com/od/MicrosoftOfficeMac/a/Best-3-Ways-To-Find-Microsoft-Of fice-For-Mac-Key-Codes.htm
    Note is updated as of March 5, 2015
    **Wir können etwas anderes versuchen, - wenn das nicht funktioniert.

  • How to insert hyperlinks in RTF document shown in JEditorPane?

    This is a compound question so bear with me on this one :)
    What I need is to insert an hyperlink in a JEditorPane; Store it as RTF code; Retrieve it; Show it and click on it to go the the destination.
    1) So, first question, is there some method to automatically add the hyperlink and will it be saved in RTF with RTFEditorKit? (I'm actually using AdvancedRTFEditorKit but an answer to either will be enough)
    2) I tried a method that adds what appears as a link but the document that is stored doesn't have the necessary RTF codes, only the formatting that makes it look like a link. I also checked the actual RTF codes I'd need to add and they seem easy to do. So, is there a way to add the actual underlying RTF codes to the document while it's in the JEditorPane?
    I know the question(s) isn't too specific, if you can shed some light over the whole thing and point me in the right direction, it'd be great!

    Just a follow up to my own question. I found a way to answer my question 2) and I'm now storing the rtf code for hyperlinks. Now, when I show the document in JEditorPane with RTFEditorKit, I get the name of the hyperlink with no formatting indicating that it's a hyperlink.
    Example. The link "http://www.google.com" with the name "Google", only shows "Google" in plain text.
    Is it because the components I'm using don't support hyperlinks from RTF files even though they're supported from HTML files?
    Is there any way you can see this working? Is it possible to include something inside the JEditorPane that the user can click, instead of the hyperlink?

Maybe you are looking for

  • Portal - BI, sapdp00 not reached, WSAECONNREFUSED: Connection refused

    Hello, I have a problem with the connection between portal 7.0 and bi 7.0. I want to logon into the bi over the portal. The bi and the portal are on the same host. It´s an ABAP + Java installation. 1. I created the connection in the portal System Adm

  • Dropdown box

    hi frnd's. whether we can add a value to a dropdown box at run time. I had done by selecting from a dropdownbox with available datas.

  • Things to know about Macbook Pro???

    Hey Everyone, Recently I decided to switch from pc and purchased a Macbook Pro 15in. I can say I've enjoyed the experience so far with the MBP but find myself online daily trying to find out what all I should know about maintaining and operating the

  • How do I know which PRL to use?

    Moved for greater exposure

  • CProjects "accounting Tab" role/resource assignments missing

    Hi, I have assinged the Project Taks with roles and resources but when i navigate to the "accounting tab"  and expand the Project structure , the assignments are not visible, However the costs and rev related to the assignments are updated in the bac