<?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 GRID HEADING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762378#M329887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE'   "in ur fm since it is this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u r not getting confused with this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;call back&amp;lt;/b&amp;gt; top of page is handled by form routine  . &amp;lt;b&amp;gt;you need not write a perform&amp;lt;/b&amp;gt; to handle this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just u need to put ur code in &lt;/P&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;xxx&lt;/P&gt;&lt;P&gt;xxx&lt;/P&gt;&lt;P&gt;xxx&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;thats all .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Dec 2006 06:58:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-28T06:58:32Z</dc:date>
    <item>
      <title>ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762368#M329877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHEN I AM EXECUTING THE CODE THE HEADER IS HAPPENING UP FOR THE GRID BUT NOTHING IS DISPLAYED IN THE HEDADER LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_display_list .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;      I_CALLBACK_PROGRAM                = v_repid&lt;/P&gt;&lt;P&gt;    I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;    I_CALLBACK_TOP_OF_PAGE            = 'TOP-OF-PAGE'&lt;/P&gt;&lt;P&gt;      IS_LAYOUT                         = i_gs_layout&lt;/P&gt;&lt;P&gt;      IT_FIELDCAT                       = i_gt_fieldcat[]&lt;/P&gt;&lt;P&gt;      IT_EVENTS                         = lt_events[]&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      T_OUTTAB                          = i_final&lt;/P&gt;&lt;P&gt;FORM f_list_header USING P_I_LISTHEADER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lt_list_top_of_page TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;        lwa_list_top_of_page TYPE slis_listheader.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Prepare the header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lwa_list_top_of_page-typ = 'H'.&lt;/P&gt;&lt;P&gt;  lwa_list_top_of_page-info = 'SO report'.&lt;/P&gt;&lt;P&gt;  APPEND lwa_list_top_of_page TO lt_list_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lwa_list_top_of_page-info = sy-uname.&lt;/P&gt;&lt;P&gt;  APPEND lwa_list_top_of_page TO lt_list_top_of_page.&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 = lt_list_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f_list_header&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;      s_events-form = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;      s_events-name = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;      APPEND s_events TO lt_events.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 13:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762368#M329877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762369#M329878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u need to write the code in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form TOP-OF-PAGE&lt;/P&gt;&lt;P&gt;DATA: lt_list_top_of_page TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page TYPE slis_listheader.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Prepare the header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lwa_list_top_of_page-typ = 'H'.&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = 'SO report'.&lt;/P&gt;&lt;P&gt;APPEND lwa_list_top_of_page TO lt_list_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = sy-uname.&lt;/P&gt;&lt;P&gt;APPEND lwa_list_top_of_page TO lt_list_top_of_page.&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 = lt_list_top_of_page.&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;/P&gt;&lt;P&gt;check this ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 13:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762369#M329878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T13:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762370#M329879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;May be some problem with GUI

Execute the below program and checkout this


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  Y_TOP_PAGE                                                  *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;                                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*

REPORT  y_top_page                              .

TABLES : mara.
TYPE-POOLS: slis.

DATA : w_repid LIKE sy-repid.
  w_repid = sy-repid.

DATA : BEGIN OF it_mara OCCURS 0,
       matnr LIKE mara-matnr,
       END OF it_mara.

*layout
DATA: wa_layout           TYPE SLIS_LAYOUT_ALV.
*field catalog
DATA: it_fieldcat_wrt_off TYPE slis_t_fieldcat_alv,
      wa_fieldcat_wrt_off TYPE slis_fieldcat_alv.

START-OF-SELECTION.

  SELECT matnr FROM mara INTO CORRESPONDING FIELDS OF TABLE it_mara.

END-OF-SELECTION.


  CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
   EXPORTING
     i_program_name               = w_repid
   I_INTERNAL_TABNAME           = 'IT_MARA'
*     i_structure_name             = 'IT_MARA'
*   I_CLIENT_NEVER_DISPLAY       = 'X'
   I_INCLNAME                   = w_repid
*   I_BYPASSING_BUFFER           =
*   I_BUFFER_ACTIVE              =
    CHANGING
      ct_fieldcat                  = it_fieldcat_wrt_off[]
   EXCEPTIONS
     inconsistent_interface       = 1
     program_error                = 2
     OTHERS                       = 3
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program     = w_repid
      i_callback_top_of_page = 'TOP-OF-PAGE'
      is_layout              = wa_layout
      it_fieldcat            = it_fieldcat_wrt_off
    TABLES
      t_outtab               = it_mara
    EXCEPTIONS
      program_error          = 1
      OTHERS                 = 2.
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.



*-------------------------------------------------------------------*
* Form  TOP-OF-PAGE                                                 *
*-------------------------------------------------------------------*
* ALV Report Header                                                 *
*-------------------------------------------------------------------*
FORM top-of-page.
*ALV Header declarations
  DATA: t_header TYPE slis_t_listheader,
        wa_header TYPE slis_listheader,
        t_line LIKE wa_header-info,
        ld_lines TYPE i,
        ld_linesc(10) TYPE c.

* Title
  wa_header-typ  = 'H'.
  wa_header-info = 'CHANDU REPORT'.
  APPEND wa_header TO t_header.
  CLEAR wa_header.

* Date
  wa_header-typ  = 'S'.
  wa_header-key = 'Date: '.
  CONCATENATE  sy-datum+6(2) '.'
               sy-datum+4(2) '.'
               sy-datum(4) INTO wa_header-info.   "todays date
  APPEND wa_header TO t_header.
  CLEAR: wa_header.

* Total No. of Records Selected
*  describe table it_ekko lines ld_lines.
*  ld_linesc = ld_lines.
*  concatenate 'Total No. of Records Selected: ' ld_linesc
*                    into t_line separated by space.
*  wa_header-typ  = 'A'.
*  wa_header-info = t_line.
*  append wa_header to t_header.
*  clear: wa_header, t_line.

  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = t_header.
*            i_logo             = 'Z_LOGO'.
ENDFORM.                    "top-of-page&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 13:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762370#M329879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T13:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762371#M329880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its not working on alv grid screen when i am pressing back button its showing in separate blanklayout of the username and the date, how to get the same things in the top of alv grid control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 14:00:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762371#M329880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T14:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762372#M329881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might have written some write statement , remove that WRITE statement , it will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 14:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762372#M329881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T14:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762373#M329882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hace not writeen any write statement but still its diplaying on other screen when i getting back from the alv grid control, when i press back button from the output alv grid control the list is shown next instead of selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762373#M329882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762374#M329883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just write this.&lt;/P&gt;&lt;P&gt;form TOP-OF-PAGE&lt;/P&gt;&lt;P&gt;DATA: it_list_top_of_page TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;wa_list_top_of_page TYPE slis_listheader.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Prepare the header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa_list_top_of_page-typ = 'H'.&lt;/P&gt;&lt;P&gt;wa_list_top_of_page-info = 'top of page'.&lt;/P&gt;&lt;P&gt;APPEND wa_list_top_of_page TO it_list_top_of_page.&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 = it_list_top_of_page.&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;/P&gt;&lt;P&gt;and delete the code below from your report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_list_header USING P_I_LISTHEADER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_list_top_of_page TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page TYPE slis_listheader.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Prepare the header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lwa_list_top_of_page-typ = 'H'.&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = 'SO report'.&lt;/P&gt;&lt;P&gt;APPEND lwa_list_top_of_page TO lt_list_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = sy-uname.&lt;/P&gt;&lt;P&gt;APPEND lwa_list_top_of_page TO lt_list_top_of_page.&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 = lt_list_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " f_list_header&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762374#M329883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762375#M329884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do i need to place the top-of-page in the alv grid fm or in a event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762375#M329884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762376#M329885</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;Try with this modified code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_display_list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_events-form = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;s_events-name = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;APPEND s_events TO lt_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = v_repid&lt;/P&gt;&lt;P&gt;I_CALLBACK_USER_COMMAND = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;I_CALLBACK_TOP_OF_PAGE = 'TOP-OF-PAGE'&lt;/P&gt;&lt;P&gt;IS_LAYOUT = i_gs_layout&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = i_gt_fieldcat[]&lt;/P&gt;&lt;P&gt;IT_EVENTS = lt_events[]&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;T_OUTTAB = i_final.&lt;/P&gt;&lt;P&gt;&lt;/P&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: lt_list_top_of_page TYPE slis_t_listheader,&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page TYPE slis_listheader.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Prepare the header.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lwa_list_top_of_page-typ = 'H'.&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = 'SO report'.&lt;/P&gt;&lt;P&gt;lwa_list_top_of_page-info = sy-uname.&lt;/P&gt;&lt;P&gt;APPEND lwa_list_top_of_page TO lt_list_top_of_page.&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 = lt_list_top_of_page.&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;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762376#M329885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762377#M329886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:58:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762377#M329886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID HEADING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762378#M329887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE'   "in ur fm since it is this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u r not getting confused with this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;call back&amp;lt;/b&amp;gt; top of page is handled by form routine  . &amp;lt;b&amp;gt;you need not write a perform&amp;lt;/b&amp;gt; to handle this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just u need to put ur code in &lt;/P&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;xxx&lt;/P&gt;&lt;P&gt;xxx&lt;/P&gt;&lt;P&gt;xxx&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;thats all .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-heading/m-p/1762378#M329887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:58:32Z</dc:date>
    </item>
  </channel>
</rss>

