How to create hyper link to normal table field in webdynpro ABAP

HI Experts,
I am working on one Webdynpro Application where I am displaying Vendor information in normal table.
But I wanted to make LIFNR field of the table as Hyper Link and when I click on that particular LIFNR  I wanted navigate that to XK03 transaction. Please help me out from this...
When I searched in SDN I am geeting examples to create Hyper Links in ALV but I wanted to create that for normal table field.
Thanks
Basanagouda

Hi,
As you kept the Link to action.. Go to the Outline of the view and navigate to the to the newly inserted Link to action UI element in the View. Now see the properties window. In the properties you will find the category Events and in this you will have OnAction. You can create a new on action by clikcing on the button which is next to the input filed.
This will create a method and in this implementaion you can write the logic to navigate to the Transaction.
Regards,
Raju Bonagiri

Similar Messages

  • How to Create file link from dynamic table.

    Howdy -
    I have MySQL database over PHP containing a simple table that lists a group of documents, including their file system address (contained within the site).
    I've successfully created a recordset showing this table, and attached that to a dynamic table on a .php page.  The display is correct, except I can't get the column contents to link to the document.  The column just shows the text (title) of the document.
    I've consulted article tn_15364 (http://kb2.adobe.com/cps/153/tn_15364.html), but that doesn't seem to work...
    Any thoughts would be appreciated.  I'm sure this is pretty simple, but I'm coming up snake eyes.
    Charles Andrews

    To clarify:
    My site has a folder where uploaded files (.doc, .xls, .pdf, etc.) are stored after having been uploaded by a user.  During this upload process, the location of these files is stored, along with other identifying data, in a simple database table.
    I have a dynamic table created in Dreamweaver that pulls from this database, listing the document name, etc. I would like the document name shown in a column to automatically link to the actual file so a user could just click on it and open the file.
    I hope I'm not making sound more complicated than it is -
    Thanks,
    CWA

  • How to create hyper links on JFrame????????

    Hi,
    I have a Jframe. I need to display a website by creating hyperlink(URL) on my JFrame. Could u anyone help plzzzz..

    try this
    first create html frame with JEditorPane
    import javax.swing.*;
    import java.io.*;
    import java.net.*;
    public class HtmlFrame
      public static void main(String args[])
        JEditorPane editorPane = new JEditorPane();
        editorPane.setEditable(false);
        URL url = null;
        try
           url = new File("the rquested address").toURL() ;     
         catch (Exception e)
           System.out.println(e);
         try      
           editorPane.setPage(url);     
         catch (IOException e)
           System.err.println("Attempted to read a bad URL: " + url);
         JFrame f = new JFrame();     
         f.getContentPane().add(new JScrollPane(editorPane) );     
         f.pack();     
         f.show();
    second For enabling Hyperlinks, add a addHyperlinkListener to the pane and override hyperlinkUpdate(HyperlinkEvent event) method. In that method u can update the url of the pane.
    import javax.swing.event
    class class Hyperactive implements HyperlinkListener
      public void hyperlinkUpdate(HyperlinkEvent event)
        Object object = event.getSource();
        if (object == jed)
        jEditorPane_hyperlinkUpdate(event);
    void jEditorPane_hyperlinkUpdate(javax.swing.event.HyperlinkEvent event)
      if(event.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
        loadPage(event.getURL());
    void loadPage(String page)
      try
        loadPage(new URL(page));
      catch(Exception e)
        e.printStackTrace();
    void loadPage(URL page)
      Cursor c = jed.getCursor();
      SwingUtilities.invokeLater(new PageLoader(page, c));
    class PageLoader implements Runnable
      Cursor origCursor;
      URL url;
      public PageLoader(URL u, Cursor c)
        url=u;
        origCursor = c;
      public void run()
        if(url==null)
          jed.getParent().repaint();
          return;
        Document doc = jed.getDocument();
        try
          jed.setPage(url);
        catch(Exception e)
          jed.setDocument(doc);
        finally
          url=null;
          SwingUtilities.invokeLater(this);
    }Hope this helps.
    regards Amnon

  • How to provide a LINK on normal TEXT field in read only mode

    Hi,
    I have a TEXT item and that is used for only url purpose.
    so a user can enter something like http://www.abc.com in that field.
    So when I am in read only mode for that item, I want a link also on that text..
    how can I do that.
    thanks,
    Deepak

    You could create a pl/sql expression computation on the TEXT item which will convert the value shown for the field to be a HTML link
    '<a href="http:// ' || :PXX_TEXT || '">' || :pXX_TEXT || '</A>';Make the computation conditional using the same condition as is used to render the item as read-only
    varad

  • How to hide a transparent container and its fields in webdynpro abap

    Hello Friends,
    I am trying to create a view where i want to show some fields based on some other field.
    What i exactly need is When i enter some data in 1 input field .
    Corresponding to that input field few text fields wud be opened automatically in the same view.
    No Pop-ups allowed.
    What i am doing is !!
    i have created another Transparent container for my  text view fields.
    But i  am unable to hide this fields..
    Kindly help..
    At the runtime..
    After entering the value in the input field..
    This transparent container should become visible with the textview fields...
    Gaur Mayank

    Hi,
    Create A Context Attribute (Say  Visible_Hide )of Type WDUI_VISIBILITY with initial value as 01.
    Goto your Container, Bind the Visible Property with Above Created Attribute(Visible_Hide).
    In the Input Field,Use the OnEnter Event and Set the Value to Visible_Hide as 02.
    Then the Container will be Visible.
    Thaks.
    Uma

  • How To:  Create a link to gatewayed content (e.g. in email)

    I apologize if this is too basic of a question but I can't find any results after looking for several hours.
    I would like to generate a URL in an email that points to the portal and a specific portlet in the portal. The portlet has limited access rights so the URL should cause the portal to go through the login page and then redirect to the portlet. Can anyone point me to the documentation that describes this or give me an example?
    Thanks in advance!
    Mike

    Using the PTARGS might also solve another difficulty I've encountered passing (dynamic) querystring parms to portlets through the gateway. Your example seems to work great for portlets, but now trying to access a Community page containing a portlet to retain branding elements.
    For portal pages, should the ObjectID be the pageID (i.e PageID=0 for the default page) or is the ObjectID for a community page some other value (where in PlumDB is this stored) ? I changed the ClassIDView to 514 which should indicate a Community Page but it's still not loading my page. Adding to my confusion, the PTCOMMPAGES table stores the PageID as a negative value.
    Here's my example:
    http://portalserver/portal/server.pt/gateway/PTARGS_0_0_0_201_0_514/http%3B/portletserver/ApplicationName/default.aspx?querystring=value
    Any thoughts?
    re: How To: Create a link to gatewayed content (e.g. in email) Posted by Mike Beniston 5/5/05 9:45:40 AM It turned out that I was pretty close.
    If anyone else is interested, here is one way that works.
    The PTARGS are _0_userid(leave at 0)_objectid(of portlet)_communityID(if any)_0_ClassIDView(43 = view for portlet)
    "http://portalserver/portal/server.pt/gateway/PTARGS_0_0_348_208_0_43/http://portletserver/ApplicationName/pagename?querystring arguments.

  • How to create a link between 2 cells in different spreadsheets?

    when using numbers on MacBook Pro/IOS X - how to create a link between 2 cells in different spreadsheets?

    In the cell where you want the duplicate data to appear from another sheet/table do the following:
    type the equal sign ("=") then click the cell you in the sheet table while contents you want to appear in the cell where you just typed the equal sign"
    it reads "The cell I click equals the result of the formula or the contents of the next cell I click"

  • How to create dependent LOV in Advanced Table.

    Hi,
    How to create dependent LOV in Advanced Table. Pls help send me the steps.
    Thanks in Advance,
    Hanimi....

    Hi,
    Not sure whether you need dependent LOV or dependent poplist. But anyways, you can refer the below link for Dependent LOV
    http://oraclearea51.com/component/content/article/98-oa-framework/372-dependent-lov-in-oaf.html
    and for Dependent Poplist refer the below link:
    http://oraclearea51.com/component/content/article/98-oa-framework/370-dependent-poplist-in-an-advanced-table-in-oaf.html
    Regards,
    Sudhakar Mani
    http://oraclearea51.com/sudhakarmani

  • How to create IDOC for customer defined table

    hi,
    How to create IDOC for customer defined table Records and how to send this IDOC to target system.
      what message type will be used and on receiving system how to post these records.
      thankx.
      pillac.

    Hi,
    You need to create a custom message type and custom IDOC type for this with whatever fields you want send. You need to create segments (WE30), IDOC type (WE30), Message types (WE81) and assign the message type to the IDOC type (WE82).
    You will have trigger the IDOC using a Report or something after doing the partner profile settings.
    Similary in the target system also, you will have do all the settings.
    Take a look the links to find out what settings needs to be done.
    http://help.sap.com//saphelp_470/helpdata/EN/0b/2a611c507d11d18ee90000e8366fc2/frameset.htm
    http://www.sappro.com/downloads/OneClientDistribution.pdf
    Regards,
    Ravi
    Note : Please mark the helpful answers and close the thread if the issue is resolved.

  • How to create popup link in OAF dynamically or declaratively.

    Can anybody please help how to create a link as popUp in OAF dynamically or declaratively?

    Step 1: Create an OAPopupBean. For example:
    OAPopupBean popupBean =(OAPopupBean)createWebBean(pageContext,POPUP_BEAN,null,"myPopup");
    //Set the following properties on the pop-up:
    popupBean.setID("myPopup");
    popupBean.setUINodeName("myPopup");
    String popupRegion= "/oracle/apps/fnd/framework/toolbox/labsolutions/webui/TestEmpDetailsRN" ;
    popupBean.setRegion(popupRegion);
    popupBean.setHeight("130");
    popupBean.setWidth("320");
    popupBean.setTitle("Test");
    popupBean.setType(EMBEDDED_POPUP); /* Embedded type */
    Step 2: Select the item (messageStyledText, image, link, or button) on which you want to enable the pop-up, and set the following properties, as shown in this example:
    OATableBean tableBean = (OATableBean)webBean.findChildRecursive("ResultsTable");
    OAImageBean image = (OAImageBean)webBean.findChildRecursive("UpdateImage");
    image.setPopupEnabled(true);
    image.setPopupRenderEvent("onClick");
    image.setPopupID("myPopup");
    Step 3: Add the pop-up as an indexed child of the region that contains the item on which the pop-up is enabled.
    Note: If you are enabling a pop-up on an item within a classic table, advanced table or HGrid, then you must add the pop-up and the item on which it is enabled to a layout and add the layout as the indexed child of the table.
    In this example, the pop-up is enabled on an image within a table, hence the pop-up is added as a second level indexed child of the table:
    OAStackLayoutBean stackLayoutBean = new OAStackLayoutBean();
    stackLayoutBean.addIndexedChild(popupBean);
    tableBean.addIndexedChild(stackLayoutBean);

  • How to create an arrow in a table

    How to create an arrow in a table in numbers.
    If you have plus or minus numbers, I want to know a green arrow on the increase is positively or a red arrow if it is negative number

    Maybe something like this?

  • How to create t-code for a table and how to create transaction variant???

    Hi,
    I have created a custom table zsark.
    Now my requirement is : I have to create a transaction variant zsark_var for sm30 and table zsark. I have to disable the output of the first screen. I have to assign the transaction variant to the transaction code of table zsark.
    Now,
    1.     how to create transaction code to a table. Can any one give me the 
                    staps??
    2.     how to create transaction variant for the above requirement???
    Thanks & Regards,
    Sarkar

    Hi
    1 Goto SE93 transaction
    2 Choose 5th option Transaction with parameters
    3 Give transaction : SM30, Check Skip Initial Screen Press Enter
    4 Goto Bottom left corner, click F4 select viewname, on right hand side give table name
    5 Press one more time F4, choose update , mark it X on right side.
    6 save the transaction.
    Thanks
    sandeep
    reward if helpful

  • How to Create a Link to a Discoverer Workbook in Apps11i?-[solved]

    I tried to create a link to a disco workbook in apps 11i using metalink document 278095.1. It seems to be working ok for discoverer which is installed on the same machine as the apps11i is on(because when I clicked on the link which I have created in apps11i, I see a default disco4i welcome page which got installed out of the box with apps11i). But we are using discoverer version 10g which is on a different server. Does anyone has ideas on how to create a link for a disco workbook which is on a different server other than apps11i.
    Discoverer version is 10g
    Apps version is 11.5.10.2
    Thanks in advance

    hi Rod,
    I did as you said and it seems to be connecting to the right server. But I have one more problem. In metalink document it says I have to enter the following in the Parameters text field of Function form in apps:
    workbook=<(workbook identifier from step2) &PARAMETERS=param_parameter name One~Parameter One Value*param_parameter name Two~Parameter Two Value*
    But I dont understand what should I have in place of param_parameter name One~Parameter One Value. Is it the name of the parameter given in discoverer, if so can you give me an example of how to write it. Because when I typed the name of the parameter like &PARAMETERS=Client Id, where client Id is the name of the parameter, it is giving me the following error
    ORA-06502: PL/SQL: numeric or value error
    Thanks for your help

  • How to create a link to Bar Graph......?

    Hi,
    Can any body tell me how to create a link to a bar graph such that on clicking, it should navigate to specified page in the same application or different application.
    I've written the following Region Source for creating link on Graph. Correct if it is wrong.
    function onDynamicaBarGraphClick(e)
    // Read point name
         name=e.data.Name;
    // Read point value
         value=e.data.YValue;
    // You can add onclick even here using the values name and value
    link='f?p=&APP_ID.:4:'||:app_session||'::::::';
    Thanks in Advance....
    Regards,
    Manoj
    Edited by: user12873839 on Apr 12, 2010 12:11 AM

    I have replied to you in another post. Help Needed : Changing the Color of Bar Graph Dynamically
    Please don't open multiple posts for the same question. Thanks.
    --Manish                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create a link to multiple links in pdf file

    how to create a link to multiple links or a button to multiple links in pdf file. this links is goto diferent pages, no web. sorry for my english.

    You can print to PDF from the Print Module .
    Do you have Adobe Acrobat?
    Otherwise install (free) Bullzip Free PDF printer.
    http://www.bullzip.com/

Maybe you are looking for