Regarding Link to URL UI Element in a table

Hi All,
I am using "link to url" UI Element in a table column. I have mapped the column (i mean the "reference" property of "link to url" UI to a bapi node). Now, when I am populating the table, for some rows the bapi is not returning the url links. So, the column is getting disabled and not even showing the links for the rows which are getting the url link from the bapi.
Is there any way to set the mapping row wise, so that the rows which have data get enabled with the link and which do not have data will be disabled.
Also, can I make the whole table readonly, except for one column.
Please help me in this regard.
Regards,
Murthy.

Hi Armin,
Thank you very much. The problem is solved. 10 points for you.
Another Question.......
Can we make the table readonly, leaving just one column to select.(that is the column with link to url). Is it possible? If so, please tell me how....
Also, can you tell me the reason for the following exception.....
<b>com.sap.tc.webdynpro.progmodel.context.ContextConfigurationException: DataNodeInfo(CreateTemplateComp.Zad_Bapi_Get_Template_Details_Input.Output.T_Template_Details): structure field Ad_Height not found
    at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:299)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initUnmappedAttributes(NodeInfo.java:687)
    at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:238)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
    ... 49 more</b>

Similar Messages

  • How to open the pdf document from KM  through Link to URL UI element

    Hi All,
    I have Link to URL UI element  in webdynpro java layout - on click of the link we need to open the pdf document from KM respository.
    KM Document location : irj/go/km/docs/documents/RHPortal//USA/A/Test/Employee_details.pdf.
    Once this is transported to Test and Production portals , we need to retrieve the KM document from the respective portal location through the Link to URL UI element .
    Thanks,
    Portaluser100

    Hi,
    If you set the link to your document in a Context attribute by using a relative path this should work just fine.
    Example:
    wdContext.currentContextElement().setUrl("/irj/go/km/docs/documents/RHPortal//USA/A/Test/Employee_details.pdf");
    Bind that attribute to the reference property of the LinkToURL element.
    Cheers,
    Leo

  • Urgent:  regarding link up b/w BSEG n CHVW table

    hi,
    i am making a report in which i am trtying to link both tables by LIFNR and GJAHR n MJAHR .
    but when i get output in my report the Document No.(BELNR) is coming different from belnr present in tcode FBL1N...(which is used to check whether payment is made or not to vendor),
    so plzz help me out by providing guideance on it,as help will be deifntely rewarded.

    hi,
    yeah i know dat it is a cluster table and moreover i am using for all enteries but th thing is when i make link with CHVW there is a problem that the aufnr or vbeln which are present are not dere in bseg ,So what should i do to show in my reprt that the cost of  material had been paid to the vendor or not.
    plzzz help me out as it is really urgnent to me.

  • Link to Url properties problem

    Hello all,
    i am working on link to url UI element.
    the url that i have is larger than that i can put in reference property of link to url UI Element.
    How may i put whole of the url in reference properties of  link to url UI Element without length problem.
    Thanks & Regards.
    Vikash

    workaround:
    create an action and open the link via WINDOW API or with an exit plug
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/1bc575ba064574e10000000a114a6b/content.htm
    regards
    stefan

  • How to hide the URL path on click of an link to URL element,from user

    Hi All,
          I have an link to URL element, on click of the link it opens the specified url in a new window. But in new window the user is able to see the entire URL path. I want to hide this path from the user. Can any one please suggest me how to do it.
    Regards,
    lakshmi.

    hi,
    just check this help
    http://help.sap.com/saphelp_nwce10/helpdata/en/f7/f289c67c759a41b570890c62a03519/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/fdc99ab37a8d42892e0d39bbd23be8/frameset.htm
    Link to URL Question

  • Link to URL -- pdf should open in new window - Error

    Hi experts,
    I have a Web Dynpro Application with an ALV and a link to url in one column. The code is ok. It works fine. When I click on the URL a new browser window opens with the correct URL, but I get an Error --> "The requested URL could not be retrieved".
    It should be a pdf. But Acrobat Reader does not open. If I put the URL in Firefox Browser, it works perfect. Acrobat Reader opens and shows the pdf.
    The same happens when I use Windows 2000 System with Internet Explorer version 6.0.2800.1106.
    I have normally Windows XP with Internet Explorer version 6.0.2900.2180 with sp2.
    What can that be? On both computers I have the same version of Acrobat Reader with the same configuration.
    Had someone of you this problem, too? Who can help?
    Thanks a lot.
    Best regards,
    Ingmar

    I answered it myself. I had to look that for the called server no proxyserver will be used...

  • Link to URL in a table

    Hi,
    I want to insert a link to url in a column of a table dynamically.
    Iam able to create the column and the link to url also.But i dont know how to set thid link in the column of the table.
    Please suggest.
    Regards,
    Padmalatha.K
    Points will be rewarded.

    hi,
      use this code for creating dynamic table and link to action  as a table cell editor.
    public static void wdDoModifyView(IPrivateDynamicCompView wdThis, IPrivateDynamicCompView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        //@@begin wdDoModifyView
           if(firstTime){
                IWDGroup theGroup = (IWDGroup)view.getElement("InputGroup");
    // name of the group in the view layout
           IWDTable table = view.createElement(IWDTable.class);
           IWDTableColumn column = view.createElement(IWDTableColumn.class);
           IWDLinkToAction linktoaction = (IWDLinkToAction) view.createElement(IWDLinkToAction.class);
      IWDAction action = view.getAction("Action");
    linktoaction.setOnAction(action);       linktoaction.bindText("test.test");
    // context node (test)and attribute(test) binding the path to the link to action text property
           linktoaction.setEnabled(true);
           linktoaction.setImageFirst(true);
           linktoaction.setVisible(WDVisibility.VISIBLE);
           column.setTableCellEditor(linktoaction);
    IWDCaption caption = view.createElement(IWDCaption.class);
           caption.setText("header");
           column.setHeader(caption);
           IWDNodeInfo node = wdContext.nodeTest().getNodeInfo();
           table.bindDataSource(node);
           table.setEnabled(true);
           table.setFooterVisible(true);
           table.setRowSelectable(true);
           table.setVisibleRowCount(5);
           table.setDisplayEmptyRows(true);
           table.setSelectionMode(WDTableSelectionMode.AUTO);
          table.addColumn(column);
               theGroup.addChild(table);
        //@@end
    Note: create a Action in the View Controller , in the above code the action is named as Action.
    hope your problem gets resolved
    thanks and regards
    fazal

  • Display Cost Element Groups linked to a Cost Element.

    Hi ABAP Gurus,
    I am creating a program which displays a list of Cost Element Groups (maximum 10 levels) linked to a Cost Element(s) entered by the user at the selection screen.
    What I did was selecting first at SETLEAF and then at SETNODE.
    But when I was about to create the final internal table which will be used to display the data, I found out looping 10 times which is not good.
    Can you suggest as to what needs to be done on this?
    Thank you so much for your help.
    Regards,
    Onyx

    try fm K_KKB_SET_DISSOLVE
    grx
    Andreas

  • Issue linking external URL's in task list

    When I link a URL to a task list, a pop-up at the bottom of the screen saying "Only secure content is displayed" with a button saying "Show all content"
    When I select "Show all content" an Internet Explorer pop-up appears asking to either "Leave this page" or "Stay on this page."
    Selecting "Stay on this page" does nothing, but selecting "Leave this page" logs me out of Planning. When I log back in, the web page appears when I click on the task list.
    When I log off and close my browser, I have to go through the same steps.
    Is there any way to have the URL task list work without having to go through those steps? Is this an IE security setting?
    Thank you in advance for any input.
    Tiffany

    What URL are you using, is that an FR or WA report? If so check this Oracle - Hyperion Labs......: Generate Smartcuts for all objects under a folder
    Regards
    Celvin

  • Getting exception in log - Invalid external link base url

    Hi,
    I am using BI-Publisher Release 10.1.3.4 and I see that for all the reports I have in it, the below line is coming in my bi-publisher log.
    [092010_053617793][][EXCEPTION] Invalid external link base url: 'http://10.177.219.162:9704/xmlpserver/' -- the ip is my machine ip address.
    This line comes for every executing of the report. This is not causing any unwanted behavior but having an exception in log is always a concern from field.
    Can any one let me know what could be the reason for that exception?

    Hi,
    I come across the issue when I tried to view the BI Publisher report, the pdf report didnt load up and throws "[072811_123101921][][EXCEPTION] Invalid external link base url:" on the server console.
    with some the Acrobat error like "there is no page to display"
    Then I checked if the data was there or not in database table to which i had connected through the jdbc conection. I found that no data was present in the database tables. So i run the ETL process again setting some flags in the source database and then the data came up in the BI Publisher connected database.
    Then when I started Bi Publisher server and viewed the reports, it worked.
    Regards,
    krish

  • Link the URL to SAP web Lists

    hi,
    how to Link the URL to SAP web Lists using the ITS server
    please help me ASAP
    regards,
    vijay
    Message was edited by:
            vijay Aru

    to do this while writing the list you have to use WWW_SET_URL function.
    example
    write: 38(3) itab-ob color col_normal intensified off .
    url = 'http://www.google.com' .
        clear : leng .
        leng = 3 .
        call function 'WWW_SET_URL'
             exporting
                  offset        = 37
                  length        = leng
                  func          = url
             tables
                  query_string  = qstring
             exceptions
                  invalid_table = 1
                  others        = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    Regards
    Raja

  • How to get links to single Outlook Elements

    When I drag any Outlook item (or any office document) to the Outlook journal folder I get a new journal entry with a link to the Outlook item. This link can be moved into the notes field of any other Outlook item. I love it to have such links.
    Is it possible to get this links another way? Inserting something? VBA?
    Greetings, Halweg
    Btw: Does this feature still exists in Outlook 2013? Is there any documentation about links to single Outlook elements? What happens with this links when changing pst-file?

    Hi Halweg,
    I'm not quite sure if I have understood you correctly. When you say "link to the Outlook item", do you mean the shortcut of the Outlook item?
    For example:
    If this is the case, I don't aware of any other way to obtain these "links" with any built-in options in Outlook. We probably need some VBA scripts to achieve this.
    In Outlook 2013, we've made some changes to the Journal feature. Journal doesn’t appear on the ribbon in the new Navigation Bar. The default special folder for Journal still exists and can be selected from the Folders view in the Folder
    Pane. In Outlook Options, the Notes and Journal is removed. The
    Journal Options button and related dialog box are no longer available.
    Here is the reference:
    https://support.office.com/en-au/article/Discontinued-features-and-changes-in-Outlook-2013-6fad16ab-b50b-4900-81b9-249c71f3027b
    "What happens with this links when changing pst-file?" - Journal entries are stored in your Outlook data file, you'd like to change your .pst file, you need to make a backup copy of these entries.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • LINK TO URL FOR SENDING MAIL Doesnot work if more than 255 chars

    Hi Experts ,
    I am Using Link to URL to open the mail browser with details passed as below
    lv_refr = mailto:<mail_addr>?Subject=<subjectof mail>&body=<text of the mail>.
    Above one works fine as long as  length is LE 255 chars
    if length lv_refr GE 255 does not work any more . I have body (Mail text) more than 500 chars . How can go about this issue ?
    Please reply
    Patil

    >
    Matt Ferguson wrote:
    > Hi Thomas
    >
    > Got a guestion! pertaining to this URL cutting off in emails.
    >
    > The situation is that we have a workflow in which a task sends out email, in the email the URL does not display the whole link.
    > Can you help me display the whole URL when the workflow send out the EMAIL. 
    >
    > regards
    > MAtt
    The same solution that I suggested above applies here. Build your email message as a single string.  Line lenght won't matter.  Then convert the string to the binary table.  The binar table won't be restricted to 255 character line lenghts - and in fact wont' care about line lenghts at all.  Your long URL in your hyperlink will be fine.

  • Interface Controller and Link to URL

    Hi Experts,
    Could some give me the step by step process(PDF's suggested) for the Interface controller and Link to URL.
    Regards.

    hi,
    The application of downloading data from table to excel sheet
    will give a very good idea and the solution to ur problm
    Exporting Context Data into Excel Using the Web Dynpro
    Binary Cache
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/edc2f3c2-0401-0010-8898-acd5b6a94353
    Regards
    Nikhil Tapkir

  • "Create links from URLs" preference no longer working in sticky notes

    I work with reading other people's sticky notes in Adobe Acrobat X Pro (now version 10.1.1). When they wrote URLs in the sticky notes it used to recognize them as links; now they're just plain text. My Preferences > General > "Create links from URLs" option is checked ON. I aso tried View > Tools > Document Processing > "create Links from URLs" and it added two links but only outside of the sticky notes. I am on Windows 7 Professional 64-bit. Thanks.

    AFAIK, URLs inside annotations were never converted into actual links. I'm not even sure it's technically possible to do so.
    It might have happened if the annotations were flattened and the text in them became a part of the static text of the PDF. Then the URLs in it could have been converted into "live" links, but not before.

Maybe you are looking for