<?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-dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753440#M902935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kumar k  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just give the error message or write ur enitre code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get a proper solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Rohan Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 08:23:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T08:23:34Z</dc:date>
    <item>
      <title>ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753435#M902930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following code is going to dump. Pls advise me, anything wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form DISPLAY_ALV_REPORT .&lt;/P&gt;&lt;P&gt;  gi_repid = sy-repid.&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      = gi_repid&lt;/P&gt;&lt;P&gt;            i_callback_top_of_page  = 'TOP-OF-PAGE'  "see FORM&lt;/P&gt;&lt;P&gt;            i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;            is_layout               = gi_layout&lt;/P&gt;&lt;P&gt;            it_sort                 = it_sort[]&lt;/P&gt;&lt;P&gt;            it_fieldcat             = gi_fieldcatalog[]&lt;/P&gt;&lt;P&gt;            it_events               = gi_events&lt;/P&gt;&lt;P&gt;            is_print                = gi_prntparams&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_outtab                = it_material&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;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;FORM top-of-page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Program Title&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lw_line-typ  = 'H'.&lt;/P&gt;&lt;P&gt;  lw_line-info = 'Report'.&lt;/P&gt;&lt;P&gt;  APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;  CLEAR lw_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Displar Date.&lt;/P&gt;&lt;P&gt;  lw_line-typ  = 'S'.&lt;/P&gt;&lt;P&gt;  lw_line-key = 'Date: '.&lt;/P&gt;&lt;P&gt;  CONCATENATE  sy-datum+6(2) '/'&lt;/P&gt;&lt;P&gt;               sy-datum+4(2) '/'&lt;/P&gt;&lt;P&gt;               sy-datum(4) INTO lw_line-info.   "todays date&lt;/P&gt;&lt;P&gt;  APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;  CLEAR: lw_line.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "top-of-page&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753435#M902930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753436#M902931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar,&lt;/P&gt;&lt;P&gt;  can you paste the error message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753436#M902931</guid>
      <dc:creator>peter_ruiz2</dc:creator>
      <dc:date>2008-05-05T08:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753437#M902932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may be for the reason that the type of any or more parameter of gi_repid,  gi_layout, it_sort, gi_fieldcatalog, gi_events, gi_prntparams, it_material do not match with the parameter of functional module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753437#M902932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753438#M902933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Try adding these 2 lines in top-of-page initially i.e.:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REFRESH lw_header.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;clear lw_line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FORM top-of-page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program Title &lt;/P&gt;&lt;P&gt;lw_line-typ = 'H'.&lt;/P&gt;&lt;P&gt;lw_line-info = 'Report'.&lt;/P&gt;&lt;P&gt;APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;CLEAR lw_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Displar Date.&lt;/P&gt;&lt;P&gt;lw_line-typ = 'S'.&lt;/P&gt;&lt;P&gt;lw_line-key = 'Date: '.&lt;/P&gt;&lt;P&gt;CONCATENATE sy-datum+6(2) '/'&lt;/P&gt;&lt;P&gt;sy-datum+4(2) '/'&lt;/P&gt;&lt;P&gt;sy-datum(4) INTO lw_line-info. "todays date&lt;/P&gt;&lt;P&gt;APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;CLEAR: lw_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. "top-of-page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:20:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753438#M902933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753439#M902934</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;FORM top-of-page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program Title &lt;/P&gt;&lt;P&gt;lw_line-typ = 'H'.&lt;/P&gt;&lt;P&gt;lw_line-info = 'Report'.&lt;/P&gt;&lt;P&gt;APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;CLEAR lw_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Displar Date.&lt;/P&gt;&lt;P&gt;lw_line-typ = 'S'.&lt;/P&gt;&lt;P&gt;lw_line-key = 'Date: '.&lt;/P&gt;&lt;P&gt;CONCATENATE sy-datum+6(2) '/'&lt;/P&gt;&lt;P&gt;sy-datum+4(2) '/'&lt;/P&gt;&lt;P&gt;sy-datum(4) INTO lw_line-info. "todays date&lt;/P&gt;&lt;P&gt;APPEND lw_line TO lw_header.&lt;/P&gt;&lt;P&gt;CLEAR: lw_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use FM REUSE_ALV_COMMENTARY_WRITE here&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. "top-of-page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are u geeting error in dump analysis..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753439#M902934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753440#M902935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kumar k  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just give the error message or write ur enitre code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get a proper solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;Rohan Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753440#M902935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Grid-dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753441#M902936</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 Solved the problem myself. &lt;/P&gt;&lt;P&gt;I didn't implement the END-OF-PAge&lt;/P&gt;&lt;P&gt;Thats why its going to dump&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 08:24:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-dump/m-p/3753441#M902936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T08:24:12Z</dc:date>
    </item>
  </channel>
</rss>

