<?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: ALV header in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559238#M583558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which is the alv class that alow you to put that header?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2007 13:37:30 GMT</pubDate>
    <dc:creator>roberto_falk</dc:creator>
    <dc:date>2007-07-16T13:37:30Z</dc:date>
    <item>
      <title>ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559231#M583551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to show in a screen 3 alvs and some information. I have an example that shows the information exactly the way that I need, but in this example, just one alv is showed, and I need to show 3 alvs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Someone know some way to do that? I could show the information as a header of the first alv, but I don't know how to do that or if this is a good idea...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot your help.&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 20:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559231#M583551</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-12T20:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559232#M583552</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;You can create BLOCK alv by using the fm REUSE_ALV_BLOCK_LIST_APPEND to have multiple alvs..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for a sample program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP&lt;/A&gt;&lt;EM&gt;-&lt;/EM&gt;Program&lt;EM&gt;for&lt;/EM&gt;ALV&lt;EM&gt;Block&lt;/EM&gt;list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 20:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559232#M583552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T20:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559233#M583553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;u can go through this and try to make the best of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zr_ara01_query NO STANDARD PAGE HEADING LINE-SIZE 250&lt;/P&gt;&lt;P&gt;        MESSAGE-ID 38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:  sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF header,&lt;/P&gt;&lt;P&gt;       datum    TYPE sy-datum,&lt;/P&gt;&lt;P&gt;       name(30) TYPE C,&lt;/P&gt;&lt;P&gt;       text(30) TYPE C,&lt;/P&gt;&lt;P&gt;       END OF header.&lt;/P&gt;&lt;P&gt;DATA: itab_header TYPE STANDARD TABLE OF header,&lt;/P&gt;&lt;P&gt;      gwa_header   TYPE header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab    TYPE STANDARD TABLE OF sflight,&lt;/P&gt;&lt;P&gt;      gwa_itab TYPE sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : alv_fc TYPE slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;DATA : alv_ly TYPE slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Screen Display  ++++++++++++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE title_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: carrid     FOR sflight-carrid,&lt;/P&gt;&lt;P&gt;                connid     FOR sflight-connid,&lt;/P&gt;&lt;P&gt;                fldate     FOR sflight-fldate,&lt;/P&gt;&lt;P&gt;                price      FOR sflight-price.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*End of Selection screen  +++++++++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  title_01 = 'Customer daten'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Selection  +++++++++++++++++++++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; LOOP AT itab_header INTO gwa_header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    gwa_header-datum = sy-datum.&lt;/P&gt;&lt;P&gt;    gwa_header-name  = 'My name'.&lt;/P&gt;&lt;P&gt;    gwa_header-text  = 'ALV header test'.&lt;/P&gt;&lt;P&gt;    APPEND gwa_header TO itab_header.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM sflight&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF gwa_itab&lt;/P&gt;&lt;P&gt;  WHERE carrid IN carrid AND&lt;/P&gt;&lt;P&gt;        connid IN connid AND&lt;/P&gt;&lt;P&gt;        fldate IN fldate AND&lt;/P&gt;&lt;P&gt;        price IN price.&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND gwa_itab TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i100 WITH 'Keine Datensatz gefunden'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  PERFORM top_of_page.&lt;/P&gt;&lt;P&gt;  PERFORM ausgabe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*END-OF-SELECTION. +++++++++++++++++++++++++++++++++++++++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM Ausgabe                                                  *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ........                                                      *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ausgabe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: repid TYPE sy-repid.&lt;/P&gt;&lt;P&gt;  repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_program_name         = repid&lt;/P&gt;&lt;P&gt;            i_internal_tabname     = 'ITAB'&lt;/P&gt;&lt;P&gt;            i_inclname             = repid&lt;/P&gt;&lt;P&gt;       CHANGING&lt;/P&gt;&lt;P&gt;            ct_fieldcat            = alv_fc&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            inconsistent_interface = 1&lt;/P&gt;&lt;P&gt;            program_error          = 2&lt;/P&gt;&lt;P&gt;            OTHERS                 = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;Displaying the Data&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; alv_ly-box_fieldname = 'FLAG'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_grid_title            = 'Sflight Query'&lt;/P&gt;&lt;P&gt;            i_structure_name        = 'SFLIGHT'&lt;/P&gt;&lt;P&gt;            it_fieldcat             = alv_fc&lt;/P&gt;&lt;P&gt;            i_callback_program      = repid&lt;/P&gt;&lt;P&gt;            i_callback_top_of_page  = 'TOP_OF_PAGE'&lt;/P&gt;&lt;P&gt;            i_callback_user_command = 'ITAB_USER_COMMAND'&lt;/P&gt;&lt;P&gt;            is_layout               = alv_ly&lt;/P&gt;&lt;P&gt;            i_save                  = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_outtab                = itab&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            program_error           = 1&lt;/P&gt;&lt;P&gt;            OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM top_of_page                                              *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ........                                                      *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: t_header   TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;        lwa_header TYPE slis_listheader,&lt;/P&gt;&lt;P&gt;        day(2)     TYPE c,&lt;/P&gt;&lt;P&gt;        month(2)   TYPE c,&lt;/P&gt;&lt;P&gt;        year(4)    TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: t_header, lwa_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  day   = sy-datum+6(2).&lt;/P&gt;&lt;P&gt;  month = sy-datum+4(2).&lt;/P&gt;&lt;P&gt;  year  = sy-datum+0(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lwa_header-typ  = 'H'.&lt;/P&gt;&lt;P&gt;  CONCATENATE 'Date:' ' ' day '.' month '.' year INTO lwa_header-info .&lt;/P&gt;&lt;P&gt;  APPEND lwa_header TO t_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR lwa_header.&lt;/P&gt;&lt;P&gt;  lwa_header-typ  = 'H'.&lt;/P&gt;&lt;P&gt;  lwa_header-info = gwa_header-name.&lt;/P&gt;&lt;P&gt;  APPEND lwa_header TO t_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR lwa_header.&lt;/P&gt;&lt;P&gt;  lwa_header-typ  = 'H'.&lt;/P&gt;&lt;P&gt;  lwa_header-info = gwa_header-text.&lt;/P&gt;&lt;P&gt;  APPEND lwa_header TO t_header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            it_list_commentary = t_header.       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give points if and mark answered if your question is answered!!&lt;/P&gt;&lt;P&gt;Blacky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 20:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559233#M583553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T20:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559234#M583554</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;You can do it thru using class cl_gui_docking_container and cl_gui_textedit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2967113"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 20:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559234#M583554</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-12T20:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559235#M583555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello BlackMoses,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This example is almost what I need, but, I need to use another 2 alvs in the same dynpro... I don't know if I can create this alv not using the full screen mode. I've take a printscreen of my page to try to exemplify my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;link: &lt;A href="http://roberto.falk.googlepages.com/alvs" target="test_blank"&gt;http://roberto.falk.googlepages.com/alvs&lt;/A&gt; or &lt;A href="http://roberto.falk.googlepages.com/3alv.JPG" target="test_blank"&gt;http://roberto.falk.googlepages.com/3alv.JPG&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all the help.&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 13:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559235#M583555</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-13T13:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559236#M583556</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;Check the following links:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/sample-alv-heading-in-alv.htm" target="test_blank"&gt;http://www.sap-img.com/abap/sample-alv-heading-in-alv.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm" target="test_blank"&gt;http://www.sap-img.com/abap/test-alv-display-with-header-footer.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 14:22:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559236#M583556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-13T14:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559237#M583557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I could use this alv, but I need to put more 2 alvs without header in the same dynpro (screen) is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 14:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559237#M583557</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-13T14:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559238#M583558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which is the alv class that alow you to put that header?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 13:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559238#M583558</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-16T13:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559239#M583559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi robert, please have a look at this weblog which explains what needs to be done in order to put a header on your alv grid, which if you may notice, is not really putting a header on the ALV grid, but simply using another container and putting a document within it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/vijaybabu.dudla/blog/2006/07/21/topofpage-in-alv-using-clguialvgrid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 13:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559239#M583559</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-16T13:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559240#M583560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is a document? D you have an example of it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks your help.&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 13:47:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559240#M583560</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-16T13:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559241#M583561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read the blog man.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 13:50:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559241#M583561</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-16T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559242#M583562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm reading... I wrote the post before start to read it... sorry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks your help (and patience ;o))&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 13:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559242#M583562</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-16T13:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559243#M583563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot, I'm gonna work with it now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks everybody.&lt;/P&gt;&lt;P&gt;Roberto Falk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 14:38:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2559243#M583563</guid>
      <dc:creator>roberto_falk</dc:creator>
      <dc:date>2007-07-16T14:38:13Z</dc:date>
    </item>
  </channel>
</rss>

