How to create links betwen two documents in KM?

how to create links betwen two documents in KM?

If you use the KM provided HTML editor, there is an option to provide a link to another KM document from one KM document.
Else if its an uploaded HTML, create a link like this:
<a href="/irj/go/km/docs/documents.....">CLICK</a>

Similar Messages

  • How to create link of a document in a different library (in different site collection) - programmatically

    Hi,
    am trying to create link of a document in a different library (in different site collection) using SharePoint Link a document Content type approach. i have already tested this manually.  
    As per my requirement i need to implement this approach through code.
    If anyone has implemented link a document approach through code, please share your inputs.
    help is highly appreciated!
    thanks

    Check if below helps:
    http://blogs.msdn.com/b/cliffgreen/archive/2008/06/23/creating-a-link-to-a-document-item-in-a-sharepoint-document-library-programmatically.aspx
    http://stackoverflow.com/questions/15625448/create-a-link-to-a-document-in-a-sharepoint-shared-document-list-using-powersh

  • I registered my camera and lens before creating an account. How do I link the two now?

    I registered my camera and lens before creating an account. How do I link the two now?

    This is a public forum. You may want to contact Canon Support to help.
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 8.7, Lightroom 5.7

  • How to create links in Pages through certain words or phrases?

    I need to create links within a document for a college course I'm working on. For example I would need the word flu in a pages document to link to the site flu.gov. Does anyone have tips on how to do this?

    Here is a better explanation of what I'm trying to do for example I have to write a review of a website and I need post various links but I can't post the URL's I have to post the URLs somehow within some of the text of the review for example I would the words flu prevention would somehow to have to link to page from the flu.gov site

  • How to create links to other pages i create??

    I have finished my "homepage" and it has 5 buttons on it.("home",
    "Contact us", etc.).
    I have no idea how to create links to other pages i create.
    For example, if the user clicks on "Contact us", i wnat contact information
    to appear. So, do i create another html document that will contain contact
    information and then call that page whenever the user clicks "Contact us". Or
    do i just create another applet that contains contact information and display
    the applet in the appropriate area, whenever the user clicks "contact us".
    Hope that wasnt confusing. Bascially, I am sitting here looking at my buttons, not knowing
    what code to put under the actionPerfomed part of each button.
    thanx
    trin

    ... judging from your question... the best way i think is to create another page...
    .... so when ur user clicks on Contact Us..... he/she will be taken to another page...
    there are other techniques besides this.... but it is always better to stick with the easiest one
    ... so you need to create separate pages for all of your links....
    ... if you have any questions... let me know
    .... have fun

  • How can I link my two sites?

    How can I link my two sites?

    What do you mean by link?  You can add a text based hyperlink in Site A to Site B and do the same in Site B. 
    Or you can add a totally blank page to Site A and name it Site B.  Then add the following code to an HTML snippet:
    <script type="text/javascript">
    parent.window.location = "URL TO SITE YOU WANT TO REDIRECT TO"; </script>
    Thanks to Cyclosaurus for this code
    The Site B link will appear in the navbar of Site A and, when selected, will immediated redirect the visitor to Site B.  Create a similar page in Site B pointing back to Site A.
    OT

  • How do you link a pdf. document within a Keynote slide?

    How do you link a pdf. document within a Keynote slide?

    Gary, I'm trying to save a Keynote presentation that was created from a Powerpoint presenation using PDF files.
    It imported beautifully, problem is it won't play. Keeps giving me a "Keynote cannot play your slideshow because an error occured" message.
    I thought it was a Powerpoint/Keynote incompatibility thing, so I recreated the presentation - 1 pdf per slide just like you have here (I did this before finding your post) and it still wouldn't play. I even tried JPG - nothing; just horrible looking images.
    Is there something I'm missing?

  • Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    Hi my name Abukar I had an old apple ID and I had problem with signing it so I decided to make a new apple ID with a new email address, so how can I link with two apple IDs and how can I get back all my previous apps that I purchased before, I cloud stuff

    It is not possible to do that.
    Allan

  • Creating link to excel document within PDF portfolio

    i created a pdf portfolio and created links to pdf documents within portfolio but am unable to create a link to the excel documents.  I can't even create a link to direct them to a specific folder where the item is held.  HELP, New to pdf portfolio's!

    One option is to create a PDF from the Excel spreadsheet and link to that.
    If you want to update the spreadsheet, you could create a Web Content overlay (or HTML article) that links to a Google spreadsheet. I've played around with linking to a Google presentation, and it works fine. You can update the spreadsheet/presentation on the website and the changes automatically appear in the overlay. I've just dabbled at it, so I wouldn't be much help with sizing/formatting issues.

  • How to create links in table view

    Hi
    I am working in IC WebClient.
    Can any body guide me how to create link on particular column of the table view and How can we navigate to another page by clicking on this link ?
    I am filling the internal table (for table view) by z tables. I do not have context node for that.
    Points will be rewarded.

    use Iterators. In the itarator you can create any BSP Object you wish to.
    in the method RENDER_CELL_START of the interface IF_HTMLB_TABLEVIEW_ITERATOR
    METHOD if_htmlb_tableview_iterator~render_cell_start.
      DATA: lo_text     TYPE REF TO cl_htmlb_textview,
            lo_link TYPE REF TO cl_htmlb_link,
            lv_link_click TYPE string,
            lv_link  TYPE string,
            lv_dim   TYPE string,
            lv_pernr TYPE string.
      FIELD-SYMBOLS: <dat> TYPE ANY.
      lv_link  = 'info.htm?pernr='.
      lv_dim   = 'left=300,top=220,width=620,height=200,menubar=0,scrollbars=yes,resizable=no'.
      row_ref = p_row_data_ref.
      CASE p_column_key.
        WHEN 'PERNR'.
          CREATE OBJECT lo_link.
          lo_link->id            = p_cell_id.
          lo_link->text          = get_column_value( p_column_key ).
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
            EXPORTING
              input  = lo_link->text
            IMPORTING
              output = lv_pernr.
          CONCATENATE `window.open('` lv_link lv_pernr `' , '` lo_link->text `', '` lv_dim `');` INTO lv_link_click.
          lo_link->text = lv_pernr.
          lo_link->onclientclick = lv_link_click.
          p_replacement_bee      = lo_link.
        WHEN OTHERS.
          CREATE OBJECT lo_text.
          lo_text->id       = p_cell_id.
          lo_text->wrapping = 'FALSE'.
          lo_text->text     = get_column_value( p_column_key ).
          lo_text->design   =  'STANDARD'.
          p_replacement_bee = lo_text.
      ENDCASE.
    ENDMETHOD.
    How to use Iterators.
    /people/brian.mckellar/blog/2003/10/31/bsp-programming-htmlb-tableview-iterator
    Hope this helps.
    Cheers
    Amandeep
    <i><b>Reward points for each helpful answer.</b></i>

  • How to create links and how to use that links to go to other pages?

    my question is....how to create links...i mean by using make link option.....when we do right click on a word,etc in the design view.....and my other question is.....how to use that links to go to other pages.....i mean when i click on a link...it takes me to another web page.....

    Please do not post the same subject to more than one forum.

  • How to create links to the same page, how to create links to the same page

    How to create link to the same page with iweb?
    Thanks

    You're referring to anchors.  There are a couple of ways. These topics discuss them:
    iWeb FAQ - Anchors
    How do i hyperlink to certain portion...: Apple Support Communities
    OT

  • How  To create a new word document and to serve bookmarks

    how To create a new word document and to serve bookmarks

    there is an example :
    http://www.must.de/default.html?Javactpe.htm
    howerver ,I don't kown how to use in jsp!!

  • I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?

    I want to attach the link to text which gives the name of the site. I am not an idiot, just unfamiliar with the program. I have looked through the learning videos but cannot find anything that specifically relates to my question. I appreciate any help I can get. Thank you, in advance, for any assistance.
    Sue

    I am unable to open the screen shots as I keep getting a message saying that I am not using the correct program. Can you tell me which program I should use? Thank you.
    Sue
    Date: Mon, 22 Jul 2013 10:48:46 -0700
    From: [email protected]
    To: [email protected]
    Subject: I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?
        Re: I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?
        created by spudsmurphy13 in Help with using Adobe Muse CC - View the full discussion
    good question sue, and well done to all for how to do links.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5527823#5527823
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5527823#5527823
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5527823#5527823. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to create Trust between two domain

    How to create Trust between two domain:
    please help

    Hi,
    By default, two-way, transitive trusts are automatically created when a new domain is added to a domain tree or forest root domain using the Active Directory Installation
    Wizard. The two default trust types are defined in the following table. However there have others many types of the AD trust, please refer the following KB to determine which type you need:
    Trust types
    http://technet.microsoft.com/en-us/library/cc775736%28v=ws.10%29.aspx
    More relate KB:
    Creating Domain and Forest Trusts
    http://technet.microsoft.com/en-us/library/cc740018(WS.10).aspx
    The related third party article:
    How to configure Forest Level Trust in Windows Server
    http://blogs.interfacett.com/how-to-configure-forest-level-trust-in-windows-server
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
    these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the
    use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet. ***
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • OS X and Windows partitions won't appear

    I created a 60 gig partition for Windows 7 in boot camp a few weeks ago. Today, I decided to erase the Windows partition, split it in two, and install Windows 7 on one and Windows XP on the other. Windows XP installed fine, but now the other partitio

  • Check for reader extend pdf form

    Hi, Is there any service or API to check whether a form is reader extended in a work flow process. Also, information like when the form is reader extended and by which reader extension credential it is applied. Any way to get all this information in

  • How to reverse wrongly posted unplanned depreciaiton

    Hello Gurus, There has been wrong posting of unplanned depreciation for an asset and now the user needs to reverse such posting. This occured when the Asset was transferred and some unplanned depreciaiton was posted wrongfully. Now  the user wants to

  • ActiveX Control MS-Office 2010

    Hi, I have Windows 8.1 (64 bit) running on my PC and MS-Office Professional Plus 2010 (32-Bit) installed. The problems is when I want to add an ActiveX control to my word or excel file, it does not so and pops a message saying "The program used to cr

  • Error in Connection BAM from JDEV

    Hi: I am trying to connect BAM through JDeveloper. I am able to create the connection but when I am trying to create a sensor action (to get the data objects from the server) , I am getting the error "Cannot Open The Connection" . I am accessing the