<?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: Problem in ALV's in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757537#M328079</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did that one... still the sub totals are not comming and also sigma is not comming in output.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 13:29:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-21T13:29:29Z</dc:date>
    <item>
      <title>Problem in ALV's</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757535#M328077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any body halp me ..&lt;/P&gt;&lt;P&gt;  i am using alv in my report i want to calc. subtotals for a field based on date field...i am using reuse_alv_list_display.&lt;/P&gt;&lt;P&gt;but i am not getting sub-totals... and also the &amp;lt;b&amp;gt;sigma&amp;lt;/b&amp;gt; icon is also i am not getting....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 13:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757535#M328077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T13:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ALV's</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757536#M328078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to pass the Sort table to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH IT_SORT.&lt;/P&gt;&lt;P&gt;  CLEAR: G_S_SORT,G_S_SORT.&lt;/P&gt;&lt;P&gt;  G_S_SORT-SPOS      = 1.&lt;/P&gt;&lt;P&gt;  G_S_SORT-FIELDNAME = 'FIELD'.&lt;/P&gt;&lt;P&gt;  G_S_SORT-UP        = 'X'.&lt;/P&gt;&lt;P&gt;  G_S_SORT-DOWN      = ' '.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  G_S_SORT-SUBTOT    = 'X'.&amp;lt;/b&amp;gt;  G_S_SORT-EXPA      = ' '.&lt;/P&gt;&lt;P&gt;  APPEND G_S_SORT TO IT_SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 13:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757536#M328078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T13:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ALV's</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757537#M328079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did that one... still the sub totals are not comming and also sigma is not comming in output.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 13:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757537#M328079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T13:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ALV's</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757538#M328080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi first u need to use sort to get subtotals, award points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  WA_SORT TYPE SLIS_SORTINFO_ALV,           "SORT work area&lt;/P&gt;&lt;P&gt;            IT_SORT TYPE SLIS_T_SORTINFO_ALV,         "SORT ITAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM SORT_LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SORT_LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_SORT-FIELDNAME = 'VBELN'.&lt;/P&gt;&lt;P&gt;  WA_SORT-TABNAME = 'IT_VBAK'.&lt;/P&gt;&lt;P&gt;  WA_SORT-SPOS = 1.&lt;/P&gt;&lt;P&gt;  WA_SORT-UP = 'X'.&lt;/P&gt;&lt;P&gt;  WA_SORT-SUBTOT = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND WA_SORT TO IT_SORT.&lt;/P&gt;&lt;P&gt;  CLEAR WA_SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_SORT-FIELDNAME = 'NETWR'.&lt;/P&gt;&lt;P&gt;  WA_SORT-TABNAME = 'IT_VBAK'.&lt;/P&gt;&lt;P&gt;  WA_SORT-UP = 'X'.&lt;/P&gt;&lt;P&gt;  WA_SORT-SPOS = 2.&lt;/P&gt;&lt;P&gt;  WA_SORT-SUBTOT = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND WA_SORT TO IT_SORT.&lt;/P&gt;&lt;P&gt;  CLEAR WA_SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "SORT_LIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     I_CALLBACK_PROGRAM             = SY-REPID&lt;/P&gt;&lt;P&gt;     IT_FIELDCAT                    = IT_FIELDCAT&lt;/P&gt;&lt;P&gt;     IS_LAYOUT                      = LAYOUT&lt;/P&gt;&lt;P&gt;     IT_SORT                        = IT_SORT&lt;/P&gt;&lt;P&gt;     I_CALLBACK_PF_STATUS_SET       = 'STATUS'&lt;/P&gt;&lt;P&gt;     IT_EXCLUDING                   = I_FCODE_EXTAB&lt;/P&gt;&lt;P&gt;     I_CALLBACK_USER_COMMAND        = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;     IT_EVENTS                      = IT_EVENTS[]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 13:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757538#M328080</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-12-21T13:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in ALV's</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757539#M328081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did it still... the report which i am modyfing is std report..RIIMR020 i have copied it in Z report and i am modyfing....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 13:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-alv-s/m-p/1757539#M328081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T13:34:45Z</dc:date>
    </item>
  </channel>
</rss>

