<?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: list header for alv grid using abap objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132779#M1365675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a splitter using CL_GUI_EASY_SPLITTER_CONTAINER with a top and bottom half.  Put the alv grid in the bottom half.  Use cl_dd_document (documented in help.sap.com )  to build the header in the top half.  Use events on CL_GUI_ALV_GRID to handle the top-of-list printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, if available, use CL_SALV_TABLE, and read the documentation on that.  When I needed a header for my report, that's what I did.  There's plenty of good documentation about if you'll search for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Sep 2009 11:22:42 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2009-09-03T11:22:42Z</dc:date>
    <item>
      <title>list header for alv grid using abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132776#M1365672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I have displayed alv grid in container control using abap objects i.e. using method set_table_for_first_display.&lt;/P&gt;&lt;P&gt;now i need to display list header for this alv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me how to create with a sample coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Prabu S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 09:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132776#M1365672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T09:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: list header for alv grid using abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132777#M1365673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For reference of ALV grid object you can go through the program BCALV_TEST_GRID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean exactly by list header? Can you provide more details?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 10:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132777#M1365673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T10:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: list header for alv grid using abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132778#M1365674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Ankur Parab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     List header in alv grid is that to display header on top of list. For eg. i need to display report name and client address on top of the list. This i need to display using abap objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 05:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132778#M1365674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-03T05:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: list header for alv grid using abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132779#M1365675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a splitter using CL_GUI_EASY_SPLITTER_CONTAINER with a top and bottom half.  Put the alv grid in the bottom half.  Use cl_dd_document (documented in help.sap.com )  to build the header in the top half.  Use events on CL_GUI_ALV_GRID to handle the top-of-list printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, if available, use CL_SALV_TABLE, and read the documentation on that.  When I needed a header for my report, that's what I did.  There's plenty of good documentation about if you'll search for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2009 11:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132779#M1365675</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-09-03T11:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: list header for alv grid using abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132780#M1365676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2009 04:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-header-for-alv-grid-using-abap-objects/m-p/6132780#M1365676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-10T04:31:05Z</dc:date>
    </item>
  </channel>
</rss>

