<?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-SORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581090#M262204</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay&lt;/P&gt;&lt;P&gt;Thanks for that..its adding now..&lt;/P&gt;&lt;P&gt;but my requirement is like this..&lt;/P&gt;&lt;P&gt;i have 5 active employyes and at end i want subtotal as 5 and below total as 5..&lt;/P&gt;&lt;P&gt;now in subtotal place its taking 1 and in total place it showing 6(i mean 5 + subtotal also adding)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Oct 2006 04:23:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-10T04:23:11Z</dc:date>
    <item>
      <title>ALV-SORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581087#M262201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a requirement like this.&lt;/P&gt;&lt;P&gt;In my list i have a column which displays active(1) and inactive(0) employyes.&lt;/P&gt;&lt;P&gt;i want to add at the end.&lt;/P&gt;&lt;P&gt;i have 5 active employyes(1,1,1,1,1)..But at sub total it should be 5,but iam getting 1 and also in total its not displaying at all.&lt;/P&gt;&lt;P&gt;Please see my code..&lt;/P&gt;&lt;P&gt;READ TABLE I_FCAT INTO WA_FCAT WITH KEY FIELDNAME = 'PERSG'.&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    WA_FCAT-REPTEXT_DDIC = 'X'.&lt;/P&gt;&lt;P&gt;    WA_FCAT-SELTEXT_S = TEXT-041.&lt;/P&gt;&lt;P&gt;    WA_FCAT-SELTEXT_M = TEXT-041.&lt;/P&gt;&lt;P&gt;    WA_FCAT-SELTEXT_L = TEXT-041.&lt;/P&gt;&lt;P&gt;    WA_FCAT-OUTPUTLEN = 12.&lt;/P&gt;&lt;P&gt;    WA_FCAT-JUST = 'L'.&lt;/P&gt;&lt;P&gt;    WA_FCAT-DO_SUM = 'X'.&lt;/P&gt;&lt;P&gt;    MODIFY  I_FCAT FROM WA_FCAT INDEX SY-TABIX.&lt;/P&gt;&lt;P&gt;    CLEAR WA_FCAT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X_SORT-SPOS = 41.&lt;/P&gt;&lt;P&gt;X_SORT-FIELDNAME = 'PERSG'.&lt;/P&gt;&lt;P&gt;X_SORT-SUBTOT = 'X'.&lt;/P&gt;&lt;P&gt;APPEND X_SORT TO I_SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me its very urgent..&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 11:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581087#M262201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T11:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-SORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581088#M262202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link, which ll give you complete idea about the ALV  sort which you can use in your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/dual-alv-grid-in-same-screen-785923#" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/dual-alv-grid-in-same-screen-785923#&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/abap/add-button-to-alv-toolbar-with-reuse-alv-list-display.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/abap/add-button-to-alv-toolbar-with-reuse-alv-list-display.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 14:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581088#M262202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T14:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-SORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581089#M262203</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;PERSG is of type Char 1.&lt;/P&gt;&lt;P&gt;so it is not possible to Sum it up.&lt;/P&gt;&lt;P&gt;the below code will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE I_FCAT INTO WA_FCAT WITH KEY FIELDNAME = 'PERSG'.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;WA_FCAT-REPTEXT_DDIC = 'X'.&lt;/P&gt;&lt;P&gt;WA_FCAT-SELTEXT_S = TEXT-041.&lt;/P&gt;&lt;P&gt;WA_FCAT-SELTEXT_M = TEXT-041.&lt;/P&gt;&lt;P&gt;WA_FCAT-SELTEXT_L = TEXT-041.&lt;/P&gt;&lt;P&gt;WA_FCAT-OUTPUTLEN = 12.&lt;/P&gt;&lt;P&gt;WA_FCAT-JUST = 'L'.&lt;/P&gt;&lt;P&gt;WA_FCAT-DO_SUM = 'X'.&lt;/P&gt;&lt;P&gt;MODIFY I_FCAT FROM WA_FCAT INDEX SY-TABIX.&lt;/P&gt;&lt;P&gt;CLEAR WA_FCAT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the field should be of type Numeric.&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>Mon, 09 Oct 2006 14:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581089#M262203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T14:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-SORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581090#M262204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay&lt;/P&gt;&lt;P&gt;Thanks for that..its adding now..&lt;/P&gt;&lt;P&gt;but my requirement is like this..&lt;/P&gt;&lt;P&gt;i have 5 active employyes and at end i want subtotal as 5 and below total as 5..&lt;/P&gt;&lt;P&gt;now in subtotal place its taking 1 and in total place it showing 6(i mean 5 + subtotal also adding)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 04:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort/m-p/1581090#M262204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T04:23:11Z</dc:date>
    </item>
  </channel>
</rss>

