Help Req for creating tool tip for value

Hi ABAPers,
I have created the search help for material.
In search help output screen ,
                       I have the column contain a long text with the output lenght as 40 char that is displayed and once i put the mouse on it the entire  long text  should apears.
Kindly help.
Thanks & Regards
Sachin Yadav

If it is a input text field... i think not possible.
This is only possible for buttons on toolbar (as far as i know)

Similar Messages

  • How to create tool tip in indesign skd?

    hi,
    Anyone suggest me, how to create tool tip in indesign skd?
    thanks,
    vijay

    Thanks for your reply, But i cannot able to set it in plugin menu.
    Please guide me
    Thanks,
    vijay

  • Help req for screen exit in migo

    Hi guys,
                 I am using badi MB_MIGO_BADi to design an header screen i am facing following issues
    1) It should be active for a particular plant. Now which badi/exit shld be use to export the value of plant
    to badi to make it visible or invisible. IF its invisible does it also make it inactive??
    2) to save the data from the screen into an z table. i put a break point in exit MB_CF001 but its not executing when
    clicked on save while creating GRN against a PO.

    Hi,
    rearding the capturing of transit loss, I guess you can use the field 'Qty in Delivery note" to capture the Qty claimed to be delivered and capture the actual qty in the qty in Unit of entry field.
    The difference would the transit lodd.
    You can build reports on these.
    Hope this helps.

  • Help req for loop

    Hi All,
    I am retriving values from database and then writing it to a file...The code for this is
    String query = "SELECT Project_Master.proj_name,Project_Master.proj_desc,Project_Master.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type FROM Project_Master INNER JOIN folder_navigation ON Project_master.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";
    ResultSet rs = stmt.executeQuery(query);
    int maxcols = rs.getMetaData().getColumnCount();
    while(rs.next())
    System.out.println("proj_name::"+rs.getString("proj_name"));
    System.out.println("proj_desc::"+rs.getString("proj_desc"));
    System.out.println("proj_location::"+rs.getString("proj_location"));
    System.out.println("nav_name::"+rs.getString("nav_name"));
    System.out.println("cont_name::"+rs.getString("cont_name"));
    for(int i =1;i <=maxcols;i++)
    myData.add(new Tags_Define(rs.getString("proj_name"),rs.getString("proj_desc"),rs.getString("proj_location")));
    I get output of this as
    <name>data1</name>
    <desc>data2</desc>
    <path>data3</path>
    this data is repeated 6 times as there are 6 colomns in my table
    If i comment out for loop i get the above data 2 times
    But I want data to be retained row wise
    What should i do?
    Please help
    Thanks in advance

    First of all, when posting code, click the code button.
    Is the for loop meant to be nested in the while or is it supposed to come after it? It is impossible to tell as you did not include the closing brace.
    Also this code:
    String query = "SELECT Project_Master.proj_name,Project_Master.proj_desc,Project_Master.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type FROM Project_Master INNER JOIN folder_navigation ON Project_master.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";is much longer than it needs to be. Are you sure it executes without errors? Why don't you use a table alias instead?
    String query = "SELECT PM.proj_name,PM.proj_desc,PM.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type
    FROM Project_Master PM INNER JOIN folder_navigation ON PM.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";also, you have not specified folder_navigation or content_document in the from clause, I presume these are also tables? Also, what is myData? We do not see it declared anywhere.

  • Help req for check customer table maintenance with XD02 if not throw error

    hello ABAP GURUS,
    check customer of the table maintenance with XD02 if not throw error i have given the codition for passing the values in the table but before that it has to check whether the customer i am passing in to the table is a customer from xd02.Here whatever no i am passing it is accepting it should not happen, but when i give the customer which is not a customer it should not accept but it has to throw the message as 'customer does not exist.Its urgent please help me
    TYPES: BEGIN OF TY_KNVI,
    KUNNR TYPE KUNNR,
    TATYP TYPE TATYP,
    TAXKD TYPE TAKLD,
    END OF TY_KNVI.
    DATA : VALIDFROM TYPE GUEBG,
    VALIDTO TYPE GUEEN.
    DATA : IT_KNVI TYPE STANDARD TABLE OF TY_KNVI,
    WA_KNVI TYPE TY_KNVI OCCURS 0 WITH HEADER LINE.
    DATA : V_NAME TYPE SYUNAME.
    SELECT KUNNR
    TATYP
    TAXKD
    FROM KNVI
    INTO TABLE WA_KNVI
    WHERE KUNNR = YYV_CFORM-KUNNR
    AND TATYP = 'ZCST'
    AND TAXKD = '1'.
    V_NAME = SY-UNAME.
    YYV_CFORM-ENTEREDBY = V_NAME.
    IF SY-SUBRC NE 0.
    MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'.
    ENDIF.
    I have used the following code to enter the data into the table maintenance it is working fine and throwing the error when the tax type is not the one which i have given in the select statements but the problem is when i have given the customer no which is not there in the XD02 tcode, it is accepting and showing the error message as MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'. now i have to check the customer no from XD02 and if it is existing in that tcode it should allow to save in the table maintenance otherwise throw a message as the 'Customer no does not exist, this I am unable to write so how can i check please help me .
    thankx in advance.
    Edited by: soni khadary on Apr 22, 2008 7:55 AM

    Hi Kelly,
    I guess <wa_tab>-handle_style is of type lvc_t_styl therefore you can do the following:
    ls_edit-style = cl_gui_alv_grid=>mc_style_enabled.
    "I assume you know your non-key fields' names so you can use subrotuine to perform update on each of them
    ls_edit-fieldname =  'First field name' .
    PERFORM update ls_edit.
    ls_edit-fieldname =  'Second field name'.
    PERFORM update ls_edit.
    ls_edit-fieldname = 'Third field name'.
    PERFORM update ls_edit
    FORM update USING fs_edit type lvc_s_styl.
    field-symbols: <style_tab> type lvc_t_styl,
                         <style_wa> type lvc_s_styl.
    LOOP AT <tab> ASSIGNING <wa_tab>.
       if e_row = sy-tabix .
         "get you style table
         assign component 'HANDLE_STYLE' of structure <wa_tab> to <style_tab>.
         "as <style_tab> is typed fully you can read the row you are interested in
         read table <style_tab> assigning <style_wa> with key fieldname = fs_edit-fieldname
         if sy-subrc = 0.
           "update this entry
            <style_wa> = fs_edit.
    *        modify table <style_tab> from <style_wa>. 
         endif.
       endif.
    endloop.
    endform.
    Note!
    Though, this should work, the use of RTTI as Uwe suggested would be best practise approach as far as dynamic programming is concerned. Anyhow it is still up to you which one you pick.
    Regards
    Marcin
    I noticed now that this line is not necessary
    modify table <style_tab> from <style_wa>. 
    as we simply are working with field symbols, so changes made to <style_wa> are already visible in that table <style_tab>.
    Edited by: Marcin Pciak on Mar 15, 2009 12:44 PM

  • Help Req for Rounding Rule,

    Hi All,
    Can some one tell me what r the steps to be created in rounding rule of Absence Quota.
    Regards,
    Vinod.

    Define Rules for Rounding Counted Absences
    In this step, you set rounding rules for absence and attendance counting.
    If you specify an hours or day multiplier for counting attendances and absences, the values determined can have several places behind the decimal point. It is difficult to use these values for quota deduction and payroll. In this step, therefore, you set rules for rounding the values.
    You use concrete numbers for the rounding rules and can specify whether you want:
    Only values within the specified interval to be rounded or the interval to be rolled
    The specified upper and lower limits to be included in the calculation
    You can specify several subrules for a rounding rule and number them sequentially. The system runs through the subrules in sequential order until it finds one that applies.
    Example
    For absences, you use a counting rule that is counted using an hours multiplier of 80%. You want whole numbers (full hours) to be determined in counting.
    Define a rounding rule
    With a lower limit of 0.5 (inclusive)
    With an upper limit of 1.5 (not inclusive)
    With a target value of 1
    You want the rule to be rolled, that is, to apply also to the following intervals:
    1.5 - 2.4 (rounded to 2)
    2.5 - 3.4 (rounded to 3)
    and so on.
    Standard settings
    The standard system contains sample rounding rules.
    Activities
    1. Define a rounding rule.
    2. If you want to specify several subrules, number them sequentially.
    3. Enter the upper and lower limit of the rounding interval.
    If you select the Incl. field, the value of the specified upper or lower limit is included in the rounding (greater than/equal to or less than/equal to).
    4. Enter the target value to which you want the value to be rounded.
    5. If you want the rounding rule to be rolled, select the Roll. field.
    Further notes
    You can also use the rounding rules you define here for other purposes, for example, to round quota entitlements that have been generated automatically.

  • Help Req for fresher

    I am new in this area. Pls send me some documents and reading material at [email protected] Points awarded.
    Thanks
    Murali

    Hi Murali,
    Maybe the SAP Online Documentation can help you on this.
    http://help.sap.com
    There you will find all the necessary informations on PLM issues for your used release.
    Best regards,
    Chrisoph

  • Help req. for IS-T

    Hi all,
             My new assignment is come under IS-T (Telecommunication).  I am working as a MM consultant. Can any body give me some idea about IS-T customization path or Tcode or useful link. This there any special setting required for IS-T.
          Thanks in advance ( if you have any useful document then send me on sk_deo at the rate lycos dot com )
    regards
    Sanjay

    http://help.sap.com/saphelp_telecom472/helpdata/en/5F/B82C368CAE9167E10000009B38F839/frameset.htm
    Master Data Details:       
    Business Partner  :: BP
    Contract Account  ::  CAA1,2,3.
    Regards,
    Shiva

  • BDC help req for MM02??

    hi
    I made a BDC pgm for MM02,to update the Purchasing Group filed for a matnr,based on Plant.
    But i am facing an prob that,when in a Matnr views,my curcur is coming to  Purchsaing View ,it update the EKGRP filed,but  when it directly comes to MRP 1,its given an error,that MARC-EKGRP not exits.
    Moreover I had done only recording for Purchaing View,not for MRP 1 view,but not able to understand why its going there in MRP 1 view,some time for some materials.
    Can any one tell me,how to rectify this prob?
    Regds.

    Hi,
    This problem occurs because,
    Different materials have different types,
    so this view will not be same for all,
    so if you have done recording for 4th tab ,than for next material at 4th tab some other thing will be there,
    to rectify this problem,
    do the recording for basic data 1 (it will be present for very material ) and then goto the required tab,
    i hope  it fits to your requirement,
    Regards,
    Talwinder

  • Help in modifying create sales order - update value during idoc import

    Hi,
    I have been asked to modify the process of creating a sales order when an idoc comes through. The basic requirement is to update a value in the sales order item (VBKD-BSTKD_E) with a value from the Idoc (in segment E1EDP02).
    I have never mapped inbound documents before and I was wondering if anyone could help me. I think I have idnetified the right enhancement VEDA0001 - EXIT_SAPLVEDA_001 but I am not sure what the syntax should be.
    Does anyone have any idea - or pointers where I could create this solution. I even tried to put a break-point into the customer exit - but it seems to be ignoring the code!
    Would appreciate anybodies help
    Paul

    hi Paul,
    I need to enhance FM u201CIDOC_INPUT_ORDERSu201D. So I had created the new project ZDEV_VEDA via tcode CMOD and under this new project, I assigned the VEDA0001 enhancement. I wanted to enhance Function exit EXIT_SAPLVEDA_001 (INCLUDE ZXVEDU03). But I had encountered this message:
    Program names ZX... are reserved for includes of exit function groups. Message no. DS027
    Any ideas what is this about? Appreciate so much.
    TQ.

  • How to implement Tool tip text in peoplesoft

    Hi PS Team,
    Please provide me the steps or reference to create tool tip text.
    Thanks and records,
    raghavendra

    Hello,
    We already have a build-in tooltip functionality in reporting services / report Definition, simply use that:
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Creating a "Tool Tip"  for an image

    Is there a dreaweaver extension for creating a "tool tip" for
    an image, or how do i create one?
    Thanks for your help
    Jim

    Jim,
    Put your tooltip text in the title attribute.
    HTH,
    Randy
    > Is there a dreaweaver extension for creating a "tool
    tip" for an image, or how do i create one?

  • Update tool-tip for customized portal Help URL

    I have customized the Help Link in Portal Masthead with our own URL. It works fine. However, when the user moves their mouse over the "Help" link, the tool-tip still shows the original text, i.e. "Display the online help ...". How can I also customize the tool-tip of the customized Help URL?
    Thanks.

    Hi,
    you'll have to customize the masthead application. This text is saved in the file:
    PORTAL-INF\private\classes\headeriView_nls.properties -> pick the one that matches your language.
    The String you'll have to modify is:
    HELP_TOOLTIP=Display the online help for more information about the portal
    Change it, save the file and create the PAR again (it's only to zip, nothing to compile) and deploy it.
    br,
    Tobias

  • Tool Tip Text for field values in ALV report

    Hi,
    How to get the tool tip text for the field values in ALV report.
    Thanks & Regards,
    Pallavi.

    Hi,
    In fieldcatalog specify the TOOLTIP.
    <b>
    LVC_S_FCAT-TOOLTIP
    </b>
    In this speicfyteh tooltip you want.
    Then append this to the fieldcatalog.
    Hope this solves ur problem.

  • Is it possible to create a tool tip for an individual cell?

    Hi,
    Is it possible to create a tool tip for an individual cell?
    Sun's JTable tutorial shows how to create a tooltip for an individual column:
    TableColumnModel tcm = table.getColumnModel();
    TableColumn tc = tcm.getColumn(0);
    DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
    renderer.setToolTipText("This is a tool tip text");
    tc.setCellRenderer(renderer);
    Thank you.

    See reply #2 below:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=424429
    ;o)
    V.V.

Maybe you are looking for