How to include hyperlink in Endeca page

I have a requirement about including hyperlink into Endeca page. I have an endeca page including external web contents, let's say the url is http://localhost:8080/web/guest/a. I have another endeca page showing orders. When user click on an order on that endeca page, it should go to http://localhost:8080/web/guest/. I just want to know how to implement this feature in Endeca. Any help is appreciated.

For now I can click one of the items in the guided navigation and then go to another endeca page which has OA page in it. Another question for this, could I get the data for what user choose? Say user choose item1 in the guided navigation, then the OA page knows user choose this item and user does not need to enter item id to update the quantity of this item (say the filed of item id is filled automatically because OA page gets data from endeca). The reason why I want to do like this is Endeca cannot update data so I need to use OA framework to update. Does anyone know how to implement this scenario?

Similar Messages

  • How do you HYPERLINK a web page address to an EXCEL document in Firefox like is possible in Explorer

    How do you HYPERLINK a web page address to an EXCEL document in Firefox like is possible in Explorer?

    When you follow a hyperlink in Excel, usually it should open in your default browser. You shouldn't have to do anything special in Excel to create the link when Firefox is your default browser compared with IE. However, the Insert Hyperlink dialog might work differently. I think it might be able to automatically pre-populate a URL from IE, while in Firefox, you need to copy the URL from Firefox's address bar and paste it into the Insert Link dialog.

  • How to include iview from one page to another using FPM

    Dear experts
    using ECC6 NetWeaver 7
    I have followed this WIKI guide step by step.
    How to include iview from one page to another using FPM?
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=118423928
    On step 4 I couldnu2019t create an Iview based on view u201Cpersonal datau201D u2013 it was not possible.
    The view wasnu2019t there (in comprehend to the  WIKI)
    What could be the reason?
    I have full authorization on the portal.
    Thank in advance for your help.

    Please check this.
    Re: Organizational History iView
    /thread/370447 [original link is broken]
    Regards,
    Sandip

  • How to create hyperlink in Html page using Java

    Hello every one
    I want to know that how can I create a hyperlink in Html page using java ?
    Let for example
    I have code like this and i want to give hyperlink to it using java.
    rember that i am creating node using this id="name" which give me multiple value. and i want to assign diff link to each name..?
    <tr>
    <td ><span id="name"></span>
    </tr>

    but i m using this code to create node in html file
    HTMLLIElement li = (HTMLLIElement)appHTML.createElement("LI");
    Text txt = appHTML.createTextNode(name);
    li.appendChild(txt);
    appHTML.getElementById("name").appendChild(li);
    this will display all name value which is coming from database,
    and i want to assign a hyperlink to it,
    I have id with name also so I thought that using id i will
    create javascript like
    function popup(id)
         if(id==1)
              var n1 = window.open("../list/name1.html");
         if(id==2)
              var n1 = window.open("../list/name2.html");
    this way i want to popup particular file if i can pass id value in this function
    so want hyperlink like
    name

  • How to do hyperlink to html page?

    can i know how to do a hyperlink to html page once i click on a Jbutton? I need a help : )

    You can try something like this:
    String cmd = "c:/program files/ie.exe"; // WHat ever your explorer path is
    String url = "test.html"; // what ever your html path is
          try {
          Runtime.getRuntime().exec(cmd + " \"" + url + "\"");
          } catch (IOException ex) {
    ex.printStackTrace();
          }

  • How to Including Hyperlinks in alv

    Anone has a simple demo report for alv Including Hyperlinks.?

    Hyper link can be in the form hotspot here. so check this sample code.
    REPORT ztest_hyper_link MESSAGE-ID zz .
    TYPE-POOLS: slis.
    DATA: x_fieldcat TYPE slis_fieldcat_alv,
    it_fieldcat TYPE slis_t_fieldcat_alv,
    l_layout TYPE slis_layout_alv,
    x_events TYPE slis_alv_event,
    it_events TYPE slis_t_event.
    DATA: BEGIN OF itab OCCURS 0,
    vbeln LIKE vbak-vbeln,
    posnr LIKE vbap-posnr,
    link(40),
    END OF itab.
    SELECT vbeln
    posnr
    FROM vbap
    UP TO 20 ROWS
    INTO TABLE itab.
    LOOP AT itab.
      itab-link = 'http://www.sdn.sap.com'.
      MODIFY itab.
    ENDLOOP.
    x_fieldcat-fieldname = 'LINK'.
    x_fieldcat-tabname = 'ITAB'.
    x_fieldcat-seltext_l = 'Website'.
    x_fieldcat-col_pos = 1.
    x_fieldcat-hotspot = 'X'.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'VBELN'.
    x_fieldcat-seltext_l = 'VBELN'.
    x_fieldcat-tabname = 'ITAB'.
    x_fieldcat-col_pos = 2.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    x_fieldcat-fieldname = 'POSNR'.
    x_fieldcat-seltext_l = 'POSNR'.
    x_fieldcat-tabname = 'ITAB'.
    x_fieldcat-col_pos = 3.
    APPEND x_fieldcat TO it_fieldcat.
    CLEAR x_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        is_layout               = l_layout
        i_callback_user_command = 'USER_COMMAND'
        it_fieldcat             = it_fieldcat
      TABLES
        t_outtab                = itab
      EXCEPTIONS
        program_error           = 1
        OTHERS                  = 2.
    IF sy-subrc NE 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *&      Form  USER_COMMAND
    *       text
    *      -->R_UCOMM      text
    *      -->RS_SELFIELD  text
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
      DATA: document TYPE string.
      CASE '&IC1'.
          CASE rs_selfield-fieldname.
            WHEN  'LINK'.
              document = rs_selfield-value.
              CALL METHOD cl_gui_frontend_services=>execute(
                EXPORTING
                  document               = document
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
          ENDCASE.
      ENDCASE.
      rs_selfield-refresh = 'X'.
      BREAK-POINT.
    ENDFORM. "USER_COMMAND

  • How to delete hyperlink style in Pages 5.1

    How do i avoid  the hyperlink style when typing my name and email in Pages 5.1 document

    Pauline,
    If no one is able to assist on this forum, there is an iWork forum for Pages you can post to. The link ishttps://discussions.apple.com/community/iwork/pages

  • How do I hyperlink to a page in the same document in pages

    I have used the help and also read the Pages user manual on how to hyperlink to a specific word or words in the same document and nothing works. The main problem is the when I try to set a bookmark the + is not highlighted to add the word or words that I highlighted.

    Tom,
    Well, I was considering that a blank page requires a page break, and since you can insert a page break after a page that is so full that adding one more character would force a new page, it isn't exactly on the previous page, either. It's kind of between the pages.
    Nevertheless, if you show invisibles, the page break shows itself on the previous page, and if you select it for your bookmark, it will jump to the end of the previous page, so basically your objection is valid. If you have a completely blank page it would be better to type a single space onto the page and use that for the bookmark. I think this could only be the case for the final page in a document; every page before that must have at least a page break or a section break on it.

  • How to create hyperlink in a page with another website

    like we can link email links and hyperlinks (with other
    files) how do i make link with another website like
    in my home page i say www.indiatoday.com and i want that when
    one clicks on www.indiatoday.com this site opens
    how do i create a link using dreamweaver without having to
    code manually.

    "pandeya" <[email protected]> wrote in
    message
    news:f66jl8$72b$[email protected]..
    > like we can link email links and hyperlinks (with other
    files) how do i
    > make
    > link with another website like
    > in my home page i say www.indiatoday.com and i want that
    when one clicks
    > on
    > www.indiatoday.com this site opens
    > how do i create a link using dreamweaver without having
    to code manually.
    Select the text www.indiatoday.com. In the Property
    Inspector, in the Link
    field, type the full URL -
    http://www.indiatoday.com.
    Click OK.
    You might want to use the Help documentation for really basic
    questions like
    this..
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • How to include other site web page in my application?

    I have a web page lists all payment methods, when user select one of the payment type and then click the submit button, it will re-direct to the third party site for the payment. But I want to have my header in the third party web site, this means that I only change the content in my web site to the other site. How can I do this? I'm using JSF + Tile. Thanks

    I means include the web page which is come from other site in my application body.
    The layout is:
    | my company heading |
    |-------------------------------------|
    | |
    | body(payment web site) |
    | |
    |-------------------------------------|
    | my company footer |
    The customers will feel that they are doing the payment on our site, but actually they pay on the third party site, After payment, redirect back to our web page to show the result.

  • How to keep hyperlinks made in Pages to stay as pdf?

    Hi
    I have a long doucment being prepared as an ebook. Hyperlinks look fine -- but some have a blue box around them and when i export to pdf they break. How do I fix this? Where did that blue box come from and can I do a global for finding and fixing it?
    Many thanks for your tips!

    The blue box indicates a link.
    If it works in Pages it should work in the Exported/Printed pdf.
    You will need to elaborate what versions you are using and exactly what steps you have done.
    Peter

  • How to include Chart in Web Page not as seperate image file?

    Hi, I am using JCharts and am trying to figure out how (or if it is even possible) to create a chart and then place it in a web page. All the examples I've seen show you how to create a JPEG of the chart and then link to this image from your web page. Is it not possible to surround the JPEG chart with other HTML so that I can keep my web page logo and menu etc on the same page as the chart?
    I can't find any examples which show how to surround your images with HTML as JCharts creates a JPG file and returns that in the Http Response e.g. "ServletEncoderHelper.encodeJPEG13(axisChart, 1.0f, response);".
    My environment is Java 1.4.2, Struts and Tomcat 4.1.30.
    Is there a way of drawing charts directly into a web page rather than displaying them on a seperate page as an image file?
    many thanks in advance,
    James.

    If you understand html, you know that to display an image, you must provide a reference to the image's location within the html code (there's no way to embed the image itself, directly in the html).
    An image's reference is just an url of where the image can be loaded from. Provide an url which goes to your dynamic chart servlet and requests the appropriate chart (i.e., you may have to pass in certain parameters in the url).

  • How to use Hyperlink in BSP page

    Hi,
    I have a hyperlink content in a table in one field.
    The link content is generated at the runtime, I mean it is not constant every time. It is different for different records in the table. I want to navigate to that link( a new window ) when clicked on that link, a field of table. How can I do that??
    Regards,
    Niranjan

    <%
    data: linkid type string ,
          ttab(5) .
    loop at linktable into wa .
    move: sy-tabix to ttab .
    clear linkid .
    concatenate 'link' ttab into linkid .
    condense linkid no-gaps .
    %>
    <htmlb:link id            = "<%= linkid %>"
                      reference     = "<%= wa-linkurl %>"
                      text          = "<%= wa-linkdescription %>" />
    <% endloop .%>

  • Makepkg: How to include source-bundled 'man pages' in the package?

    I'm trying to create a PKGBUILD for my own Python program.
    The source code has been packaged using Python's distutils.  Now, AFAICT distutils do not help you in any intelligent way to include a man page, so I just used a MANIFEST template to add the file to the source package.
    As for the PKGBUILD, I'm currently using an 'install -D -m0644' command (in the 'package' function) to copy the page from a directory under $srcdir to "${pkgdir}/usr/share/man/man1/${pkgname}.1.gz".
    However, seeing that makepkg has some built-in functions for compressing man pages, I figured that maybe it could deal with the proper placement too? My manual approach works nicely, but well, I figure the less of a hack job, the better.
    Thanks in advance - this is my first program and package build so I wanna get it right :)

    Thanks joyfulgirl - I guess I hadn't really thought through what kind of a deal makepkg is.
    At any rate, I figured I wouldn't have been the only Pythonista dealing with this issue and starting reading other people's setup scripts and according to Mutagen's setup.py putting desktop software man pages in 'share/man/man1' under the 'installation prefix' (a local variable, usually '/usr' or '/usr/local') can be considered a POSIX universal. Don''t know if this is reliable or just one hack replacing another, but it would mean being able to let Python's setup script take care of pretty much everything.

  • How to include hyperlink

    Hi,
    In the code
    JPanel statusLabel = new JPanel();
    statusLabel.setBounds(5,105,450,50);
    JLabel status = new JLabel("Your message has been sent successfully. Please send it to another contact.");
    statusLabel.add(status);How can I add a hyperlink in Please send it to another contact..
    Also, I need to have a listener for that hyperlink.
    Please help.
    Regards,
    Rony

    I saw that thread actually before posting.But dont know, how to invoke a constructor of other class instead of google.com in the code
    String link = "http://www.google.com";
    JLabel label = new JLabel("<html><head></head><body><a href=\""+link+"\">"+link+"</a></body></html>");Rony

Maybe you are looking for

  • Ipod Classic 120 opens iTunes, is in My Computer, but NOT in iTunes

    When I plug my iPod Classic 120 into the PC it opens iTunes automatically. It shows as an iPod in My Computer, BUT doesn't show in iTunes. It doesn't show the Syncing Circle when I plug it in. The screen just changes to 'Connected' I also get a Cauti

  • New at this and need (a lot of) help!

    ...here are a few questions, just to get started: 1. how do i change the buffer size? 2. why do my garageband projects only open in finder? 3. is there a way to rename a song? thanks, in advance, david henman bolton, ontario

  • Flash Builder 4.6 mobile connetion oracle and php

    Hi everyone im new in flash builder and as far i know Flash Builder 4.6 gives you the option to create sample PHP code, but only gives an option for a MySQL database.  Does anyone have some PHP sample code for using Oracle? I try few proyect and they

  • Need to delete local references in unknown calling context

    Hi, I was looking for the need to delete local references and came across this documentation, What does unknown caller context mean? and how does it cause local references to remain allocated in reference table although the native function returns? h

  • Release Startegy for Item Category

    Hi , Can we have a release startegy for PO for Charcetrstic Item category. It do not have any reference in in Table  CEKKO for any field. Can you tell me how can I activate the item category as a charcetrstic value in PO release startegy. Thanks, Lek