Dynamic Tool TIP in Table Control

Dear Friends,
Thanks in Advance.
How to implement Dynamic Tool TIP in the Table Control for Particularly One Columnn.
i.e rows in that Column.
Note : Column contains Currency Type Data
For that column, i am calculating the Quantity Multiplied with the Exchange Rate.
That Calculation should be visible in the Tool TIP.
Regards:
Sridhar.J

Hi
Take Text Element Radio button there  and give any number and activate.
If the Visible lenght of the Table Control Field is less than actual length of the Content, it automatically displays the Tool Tip.
I just did it.
Hope this serves your purpose.
Get it fram Sam
"  Hey Sreedhar, Let us know how can we do it , it will be helpful.
Cheers
Ram
Edited by: Ramchander Krishnamraju on Jan 2, 2010 4:06 AM

Similar Messages

  • How to implement Tool TIP in Table Control

    Hello Everyone,
    Can you please tell me how to implement a tooltip messages in table control columns.
    The Tooltip contains a simple message like "Doublde click on column.
    Thanks in advance.
    Edited by: Suruchi Razdan on Jun 6, 2011 7:57 AM

    Hello,
    In table Control->first Header Row has chance to maintain the Tooltip option.
    In table control columns maintain Double click options in attributes .
    Regards,
    Praveen

  • Dynamic field labels in table control

    Hi experts,
        My requirement is to display dynamic field labels in table control can we do this. I am much aware
    that we can do it in alv_grid. Please let me know.
    Thanks in advance.
    Sri

    Hi Anubhab,
         Thanks. With your help i could able to solve the problem. Let me put this in some
    more detail.
    When we are pulling the field from a table to table control we need to make sure the fields should have a data elements. After pulling all the fields to a table control ,we need to drag out  and delete the current table control column headings and then drop in the (new) I/O fields into their place.  I then set the text on these new fields within the PBO.  If we try to drop the (new) I/O fields on top of the existing ones with out deleting it won't work.
    Thanks & Regards.
    Srikanth

  • Dynamic Tool tip text/Quick Info

    Is it possible to have dynamic tool tip text when you hover over an icon on a report?  I know you can change the function key text but these icons are present on the report itself.
    Any ideas?!

    Check if you have the QUICKINFO option for the WRITE statement for your release.

  • Create a dynamic tool tip

    Hi All,
    I am working in an application where I am using the treeview widget. My requirement is to add a dynamic tool tip to the tree nodes. I read in a forum that I have to look into IID_ITIP. But I am still not clear as to how will I create a tool tip and associate the same to the node widget in the treeview. Any help or clues would be appreciated.
    Thanks in Advance
    JRS.

    Hi All,
    I am still not be to get this done. Could anyone guide me or refer some sample code existing?
    Thanks,
    JRS.

  • Dynamic Tool Tip Options

    Hi All,
    Could any body tell , different types of dynamic tool tips are possible in OAF.
    Regards,
    Raghava

    Hi Raghava,
    You can use this code :
    vorow.setAttribute("ToolTip","Your Message");
    OATableBean tableBean=(OATableBean)webBean.findChildRecursive("VO Name");
    OAImageBean c1 = (OAImageBean)tableBean.findChildRecursive("Value for which this tooltip should display");
    OADataBoundValueViewObject tip = new OADataBoundValueViewObject(c1,"ToolTip");
    c1.setAttributeValue(oracle.cabo.ui.UIConstants.SHORT_DESC_ATTR, tip);
    Hope this may help.
    Edited by: 869351 on Jan 18, 2012 1:50 AM

  • Dynamic header text in table control - Dialog programming

    Hi All,
    I have a table control on one of my dialog screens.  I need to dynamically change the column header texts on this control in my PBO.  Does anyone know how to do this?  I have found all kinds of ways to modify the other characteristics of the fields at run time in the PBO (active, input/output, invisible, etc.) - but not to change the header text!  Any help is appreciated.
    thanks,
    Matt

    Hi Hymavathi,
    I appreciate your help!  This didn't solve the issue, however,...I have used the method you'd mentioned before (many times) for setting it inside the loop at screen:
    %_<screenname>_%_APP_%-TEXT = <text something>.
    - but only in ABAP reports.  It doesn't seem to recogize it (the table control column header text) within a dialog program.  I keep getting a compile error. (saying that the %_<screenname>_%_APP_%-TEXT doesn't exist.
    I tried the suggestion that you stated below (from lateesh) - yet it only let me place i/o field in title text area (not the column header text).  Am still searching...

  • Dynamic Column Heading in Table Control

    Hi
    I have a table Control which needs dynamic heading for the first column. So i dragged a label and placed it on the Column 1 header. I gave the corresponding declaration and assignment in TOP include for that screen field. I also tried assigning values in the PBO of the screen also. I even tried replacing the Label with an I/O field. It is not allowing.
    Nothing is working. Any suggestions.

    Instead of the text field for your column heading, put an input/output field there, and specify the field for output only. Then assign the field with the header that you want on your PBO.

  • Dynamic pushbotton-icon in table control

    Hello,
    in my table control i have a pushbutton.
    i want to display it with a dynamic icon
    is this possible ?
    thanks very much for your answers
    Helmut

    Hi Anubhab,
         Thanks. With your help i could able to solve the problem. Let me put this in some
    more detail.
    When we are pulling the field from a table to table control we need to make sure the fields should have a data elements. After pulling all the fields to a table control ,we need to drag out  and delete the current table control column headings and then drop in the (new) I/O fields into their place.  I then set the text on these new fields within the PBO.  If we try to drop the (new) I/O fields on top of the existing ones with out deleting it won't work.
    Thanks & Regards.
    Srikanth

  • Dynamic coloumn creation in TABLE CONTROL

    Hi all,
    i am using table control in the user interface.
    here, how to create columns dynamically in table control?
    thanks in advance.
    Vinod.S

    Hi Vinond,
    Have you got the solution for this. If so please share with me.
    I too have the same requirement.
    Regards
    Prasath

  • Dynamic Column Header On Table Control

    Dear Friend
       How I can set Dynamic Column Header Text On Table Control
    Regards
    Supperkorn

    Just set it to a global variable name, and then set the value of that global variable as needed, e.g. in your TOP include define "g_my_header(20) type c" and then use g_my_header in the "Table column header" definition in the Dynpro... and in your PBO code put a value in g_my_header.
    Jonathan

  • Dynamically assign fields to table control

    Hi All,
    I have some requirements with me... I have a report which has an output table. The output table will be filled based on some conditions.
    ex... 1) select name, id, date
          2) select name, id, time  (just an ex)
    My output table contains name, id, date, time.
    So, I would like to dynamically display the fields on to the table control to either display 1) or 2).
    Is it doable thru Visual Composer?
    Please suggest.....
    Regards,
    Manjunatha.T.S

    When you use a JDBC system, the fields may change at runtime.
    So, generally, any fields that come out of the stored procedure at runtime will be displayed in the table.
    Lior

  • Dynamic Hide column in table control

    I want to hide colum of table control in program, and then it can invisible,but others is visible.
    how should i do?

    Hello All,
    I am trying to implement the above solution. I am facing some issues.
    I have used a table maintenance generator. So Depending on the Fields I have choosed, screen is automatically generated with table control : TCTRL_FSH_SOFN_V.
    Now, I have to declare a work area to store the values of the above type.
    How do i do it??
    The highlighted portion gives an syntax error as the table control is not defined.
    data: wa_FSH_SOFN_V_cols type LINE OF TCTRL_FSH_SOFN_V-COLS.
    loop at TCTRL_FSH_SOFN_V-COLS to wa_FSH_SOFN_V_cols."into .
       if sytabix = 4.
         wa_FSH_SOFN_V_cols-INVISIBLE = 1.
         MODify TCTRL_FSH_SOFN_V-COLS from wa_FSH_SOFN_V_cols.
        endif.
        endloop.

  • Dynamic tool tip

    Hi guys
    I'm wondering if it is possible to have the tool tip for a dropdown box based on the entries in the drop down box.
    so if the user could select "a", "b", or "c" from the drop down box, the tool tip would read "a / b / c"
    I could of course type it out manually, but I have several dozen and a universal script would be much quicker.
    Thank you

    Hi,
    Adobe have an excellent guide to "Calculations and Scripts", it goes back to v6 but is still applicable today. I can't find it on the Adobe web site so I will upload it.
    It covers a lot of visual feedback script and is grouped by object type which is very handy. The information is probably available elsewhere, like the help file (but sometimes you need to know what you are looking for; in order to find it).
    Anyway something like this in the exit event:
    var vAnswer = this rawValue;
    switch(vAnswer)
         case "a":
         DropDownList1.assist.toolTip = "You have selected A";
         break;
         case "b":
         DropDownList1.assist.toolTip = "You have selected B";   
         break;
         case "c":
         DropDownList1.assist.toolTip = "You have selected C";   
         break;
         default:
         DropDownList1.assist.toolTip = "Please select between a, b, or c";   
         break;
    Hope that helps,
    Niall

  • Dynamic icon in the table control

    hi friends ,
    I  wanna to place a command with the icon changing when the status changed .Pls show me how .Thks .

    hI jACK
    I am trying to get it .
    as these text store in the table D021T and able to modify the table where the text can be modified to the ICON from PUSHBUTTON.
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    DATA RESULT(60).
    LOOP AT SCREEN.
    IF screen-name = 'BB'.
    CALL FUNCTION 'ICON_CREATE'
      EXPORTING
        name                        = 'ICON_GREEN_LIGHT'
      TEXT                        = ' '
      INFO                        = ' '
      ADD_STDINF                  = 'X'
    IMPORTING
       RESULT                      = RESULT
    EXCEPTIONS
      ICON_NOT_FOUND              = 1
      OUTPUTFIELD_TOO_SHORT       = 2
    UPDATE D021T SET DTXT = RESULT WHERE PROG = 'ZMTEST_99'.
    MODIFY SCREEN.
    endif.
    ENDLOOP.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    still i am trying .
    I will come back to you.
    Regards
    Ramchander Rao.K

Maybe you are looking for

  • How can I revert to an earlier version of Thunderbird? 31.1.2 is giving me bugs.

    Thunderbird has been working great for me for years. I'm on a Windows 7 desktop computer. The new version 31.1.2 got auto-installed yesterday, and now I have the popup window to "Add Security Exception" happening all the time, even with different mai

  • Field-Help (PDF) with right click

    Hi. I would like to use the right click menu in WDA to open a pdf-file which is in the mime repository. This should work on field level, so when I switch to another field another pdf should be opened. It is okay if it's rather quick and dirty - thank

  • Convert Varchar to Smalldatetime

    I have a staging table containing data imported from CSV using Log Parser. The imported 'TimeIndex' field datatype is varchar(255), and I plan on converting it to smalldatetime and inserting all of the data in the staging table into another. The varc

  • Active Dataguard switchover puts new standby in real time query

    Hi Gurus, If using Active Dataguard ,after swicthover/failover using dg broker and observer does sthe new standby will be put in real time query mode(ADG) or manually have to open the db in read only mode. Please let me know. Thanks

  • Tell me what's going on

    Watch Mayweather vs Maidana Live Stream http://vk.com/mayweatherjrvsmaidana Mayweather vs Maidana Live Stream https://sites.google.com/site/ligodinpagmaytime/home/mayweathervsmaidanalivestream Mayweather vs Maidana Live Stream https://www.facebook.co