<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: quickinfo in ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884656#M52274</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Varun / Subramanian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your interest in this. Here's the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Prelude: The program has one screen(0100), which has a custom control area (named CC) 
as it's only element. The Flow Logic has only one PBO Module (called PBO). The program 
displays an ALV Grid with two columns, one for the Material and the other to contain 
an icon. This icon will have a tooltip text, which is the material text for the material 
in the first column of that row.

data : container type ref to cl_gui_custom_container,
       alv_grid  type ref to cl_gui_alv_grid.

data: fcat type lvc_t_fcat,
      fs_fcat type lvc_s_fcat,
      begin of itab occurs 0,
        matnr     type matnr,
        text(44)  type c,
      end of itab.


start-of-selection.
  call screen 100.

module pbo output.

  create object container
         exporting container_name = 'CC'.

  create object alv_grid
         exporting i_parent = container.


  fs_fcat-fieldname = 'MATNR'.
  fs_fcat-ref_table = 'MARA'.
  append fs_fcat to fcat.

  fs_fcat-fieldname = 'TEXT'.
  fs_fcat-outputlen = 4.
  fs_fcat-coltext = 'Text'.
  fs_fcat-INTTYPE = 'C'.
  fs_fcat-SELTEXT = 'Description'.
  fs_fcat-icon = 'X'.
  append fs_fcat to fcat.


  select distinct matnr
         maktx
    from makt
    up to 10 rows
    into (itab-matnr , itab-text)
   where spras = 'EN'.
* @0P@ is the icon code that I have chosen here.
* obviously, you can choose something else.
    concatenate '@0PQ'
                itab-text
                '@'
           into itab-text.

    append itab.

  endselect.

  call method alv_grid-&amp;gt;set_table_for_first_display
     changing
       IT_FIELDCATALOG  = fcat
       IT_OUTTAB        = itab[].


endmodule.

Please note that, for the sake of simplicity, I have not writeen any PAI module. So you cannot come back to the program from the screen. You can have one button on the screen which says "Back" or something like that...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Go to &amp;lt;a href="http://help.sap.com/saphelp_erp2004/helpdata/en/ff/4649baf17411d2b486006094192fe3/content.htm"&amp;gt;this link&amp;lt;/a&amp;gt;in the SAP documentation where the icon with tooltip is mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Feb 2005 06:07:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-02-04T06:07:12Z</dc:date>
    <item>
      <title>quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884643#M52261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I have a small query Iam sure someone must have done it.&lt;/P&gt;&lt;P&gt;Is it possible to attach quickinfo in ALV list.&lt;/P&gt;&lt;P&gt;In my assignment I have to show the material description for a material number as quickinfo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know which parameter we need to set in the fieldcatalog to get it.&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 09:19:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884643#M52261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T09:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884644#M52262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use tooltip attribute given in field catalog for which field you want Quick info. Specify value in this tool tip attribute then you can see Quick info for that column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 09:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884644#M52262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T09:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884645#M52263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhavik,&lt;/P&gt;&lt;P&gt;Thanks for ur help.&lt;/P&gt;&lt;P&gt;Iam trying to attach material description to the material.&lt;/P&gt;&lt;P&gt;Iam not able to find the attribute tooltip in the fieldcatalog.Also material description is another field which has to be attached with the material number. If u have a sample of how we set the tooltipn attribute it will be great.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 09:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884645#M52263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T09:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884646#M52264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhavik and everyone,&lt;/P&gt;&lt;P&gt;Iam working on version 4.7.&lt;/P&gt;&lt;P&gt;The tooltip attribute is not there in fieldcatalog i tried to search it. Is there any other attribute by which we can get it.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 10:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884646#M52264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T10:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884647#M52265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun &lt;/P&gt;&lt;P&gt;There is an field by name TIPDDICTXT in LVC_T_FCAT...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that would help U...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Immanuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 11:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884647#M52265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T11:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884648#M52266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using Object-oriented approach for ALV display?&lt;/P&gt;&lt;P&gt;I have tried it in object oriented approach of ALV.&lt;/P&gt;&lt;P&gt;In this Tooltip attribute is given field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know the status.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 11:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884648#M52266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T11:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884649#M52267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Iam using SLIS_T_FIELDCAT_ALV&lt;/P&gt;&lt;P&gt;wats the field in it.&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 11:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884649#M52267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T11:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884650#M52268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to make sure I understand your request.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need a dynamic tooltip to show up?  Its value will depend on the material number that the user is pointing to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, the techniques described so far will only give you a static tooltip for the entire column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 14:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884650#M52268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T14:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884651#M52269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with Charles. ALV Grid has not the feature of dynamic runtime tooltips, at least for now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 23:45:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884651#M52269</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-02-03T23:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884652#M52270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about these ideas?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could right click on the material number and bring up a context menu with the material description in it.  There is a limit on the text size but I do not remember what it is.  If they select the description from the menu, it would have a function code assigned to it that would not do anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could set the material number as a hotspot and a click will bring up a popup window with the material description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could put the material description just to the right of the material number.  Set the field size to something small like 1 to 5 characters.  Then when you put the mouse pointer on the text, a tooltip like line will appear displaying the whole text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could make the material number field itself a combination of the number followed by the text.  For example, the field might hold:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234567891234 - Big Pump for Big Trucks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set the display width so that only the material number can be seen.  You might need to pad the material number on the right with blanks if they are not all the same length so that the text is always hidden.  Then when the user points to the cell, the tooltip like line would appear showing the entire field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any of these ideas help you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 02:01:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884652#M52270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T02:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884653#M52271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Serdar and Charles have said, you cannot have the tooltip for the material as material text, since the tooltip in this case would have to be determined dynamically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if you are very particular on having this, there's a small work-around involving a small compromise. ALV Grid does not allow a tooltip for the column contents, but with one exception. If a column contains icons, then you can have a tooltip for each icon in the column (i.e., on each row, you can have a different tool tip text for the icon).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case, just beside the material you can have a small column of icons. You can display the same icon on all the columns and have a different tool-tip text for each row, which would be the material text for the material on that row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do let me know if you are interested in using this option, and I can provide you a small code sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 04:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884653#M52271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T04:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884654#M52272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am definitely interested, Poornanand. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subramanian V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 04:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884654#M52272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T04:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884655#M52273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charles/Anand and everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for those really good suggestions.&lt;/P&gt;&lt;P&gt;Anand if u could kindly forward me the code i will be highly oblidged.&lt;/P&gt;&lt;P&gt;Iam going to try both the ideas that u forward to me.The suggestion that charles gave I have tried it and it works well.&lt;/P&gt;&lt;P&gt;Iam going to try out the other one.&lt;/P&gt;&lt;P&gt;Thanks Again for your support&lt;/P&gt;&lt;P&gt;and do keep track and so will I.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 05:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884655#M52273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T05:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884656#M52274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Varun / Subramanian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your interest in this. Here's the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Prelude: The program has one screen(0100), which has a custom control area (named CC) 
as it's only element. The Flow Logic has only one PBO Module (called PBO). The program 
displays an ALV Grid with two columns, one for the Material and the other to contain 
an icon. This icon will have a tooltip text, which is the material text for the material 
in the first column of that row.

data : container type ref to cl_gui_custom_container,
       alv_grid  type ref to cl_gui_alv_grid.

data: fcat type lvc_t_fcat,
      fs_fcat type lvc_s_fcat,
      begin of itab occurs 0,
        matnr     type matnr,
        text(44)  type c,
      end of itab.


start-of-selection.
  call screen 100.

module pbo output.

  create object container
         exporting container_name = 'CC'.

  create object alv_grid
         exporting i_parent = container.


  fs_fcat-fieldname = 'MATNR'.
  fs_fcat-ref_table = 'MARA'.
  append fs_fcat to fcat.

  fs_fcat-fieldname = 'TEXT'.
  fs_fcat-outputlen = 4.
  fs_fcat-coltext = 'Text'.
  fs_fcat-INTTYPE = 'C'.
  fs_fcat-SELTEXT = 'Description'.
  fs_fcat-icon = 'X'.
  append fs_fcat to fcat.


  select distinct matnr
         maktx
    from makt
    up to 10 rows
    into (itab-matnr , itab-text)
   where spras = 'EN'.
* @0P@ is the icon code that I have chosen here.
* obviously, you can choose something else.
    concatenate '@0PQ'
                itab-text
                '@'
           into itab-text.

    append itab.

  endselect.

  call method alv_grid-&amp;gt;set_table_for_first_display
     changing
       IT_FIELDCATALOG  = fcat
       IT_OUTTAB        = itab[].


endmodule.

Please note that, for the sake of simplicity, I have not writeen any PAI module. So you cannot come back to the program from the screen. You can have one button on the screen which says "Back" or something like that...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Go to &amp;lt;a href="http://help.sap.com/saphelp_erp2004/helpdata/en/ff/4649baf17411d2b486006094192fe3/content.htm"&amp;gt;this link&amp;lt;/a&amp;gt;in the SAP documentation where the icon with tooltip is mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 06:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884656#M52274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T06:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884657#M52275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;This one really works.Thanks.&lt;/P&gt;&lt;P&gt;The logic works perfect.&lt;/P&gt;&lt;P&gt;This one is kewl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: If someone in the forum has new inputs for us do post it maybe we are able to find something new on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again Anand&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 06:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884657#M52275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T06:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884658#M52276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code , Poornanand. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subramanian V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 06:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884658#M52276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T06:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884659#M52277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's my pleasure, Varun. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 07:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884659#M52277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T07:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: quickinfo in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884660#M52278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a very good work-around. Thanks for sharing it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 11:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/quickinfo-in-alv/m-p/884660#M52278</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-02-04T11:03:46Z</dc:date>
    </item>
  </channel>
</rss>

