<?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 Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157222#M119212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried that, it is not getting the sort info.&lt;/P&gt;&lt;P&gt;try to pass the sort table to the FM.&lt;/P&gt;&lt;P&gt;since they are not passing(it is standard ,from some where they are getting)so if you need that info you pass the sort table to FM and try...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jan 2006 14:12:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-02T14:12:47Z</dc:date>
    <item>
      <title>ALV Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157219#M119209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group,&lt;/P&gt;&lt;P&gt;I have copied program RPCIPS00 to a z program as the standard program was not displaying custom fields added to standard table.Now when I execute this Z report the header part of the zreport seems to be missing.The form top_of_list calls a function module REUSE_ALV_LIST_LAYOUT_INFO_GET which imports a table it_sort. In the z report this table is blank where as in case of standard report this table is filled and this is causing the z program to behave differently. Any inputs on what I could be doing wrong ?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 12:58:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157219#M119209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T12:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157220#M119210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;   When copying, did you copy even the includes?&lt;/P&gt;&lt;P&gt;Also check whether the FM Reuse_commentary_write is returning the correct values or not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157220#M119210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157221#M119211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt; i don't see anywhere function module REUSE_ALV_COMMENTARY_WRITE has been used in Statndard program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TOP_OF_PAGE which has to pass to FM REUSE_ALV_EVENTS_GET.&lt;/P&gt;&lt;P&gt; then pass header info text and next call FM   &lt;/P&gt;&lt;P&gt; REUSE_ALV_COMMENTARY_WRITE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please go through sample code....&lt;/P&gt;&lt;P&gt; DATA:fevents TYPE TABLE OF slis_alv_event WITH &lt;/P&gt;&lt;P&gt; NON-UNIQUE DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_list_type = 0&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      et_events   = fevents[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE fevents WITH KEY name = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    fevents-form = 'TOP_OF_PAGE_EVENT'.&lt;/P&gt;&lt;P&gt;    MODIFY fevents INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    CLEAR fevents.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;Call the forms&lt;/P&gt;&lt;P&gt;****----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  top_of_page&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;     display top of the pags&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;&lt;/P&gt;&lt;P&gt;FORM top_of_page .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fheader-typ = 'H'.&lt;/P&gt;&lt;P&gt;  fheader-info = text-001. "Write Header text&lt;/P&gt;&lt;P&gt;  APPEND fheader.&lt;/P&gt;&lt;P&gt;  CLEAR fheader.&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;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp;      Form  top_of_page_event&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Form to call top of page event&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;FORM top_of_page_event.&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 = fheader[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "z_topofpage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:24:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157221#M119211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157222#M119212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried that, it is not getting the sort info.&lt;/P&gt;&lt;P&gt;try to pass the sort table to the FM.&lt;/P&gt;&lt;P&gt;since they are not passing(it is standard ,from some where they are getting)so if you need that info you pass the sort table to FM and try...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 14:12:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157222#M119212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T14:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157223#M119213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi please copy all the includes associated with the standard program while  copying them to zprogram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 14:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/1157223#M119213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T14:40:44Z</dc:date>
    </item>
  </channel>
</rss>

