<?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-Displaying in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577027#M260488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is this gl_trans_am..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Oct 2006 10:37:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-17T10:37:11Z</dc:date>
    <item>
      <title>ALV-Displaying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577025#M260486</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 need to display only totals below the list in same screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;I have employee code ,name and gender(male and female)&lt;/P&gt;&lt;P&gt;assume i have 3 males and 2 females..&lt;/P&gt;&lt;P&gt;Total :5 emplcode  5 names and 5 gender...&lt;/P&gt;&lt;P&gt;Now i want 3 males and 2 females to be displayed seperately below the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone have this sort of program or done the scenario..plz help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 10:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577025#M260486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T10:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-Displaying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577026#M260487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi R.K,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do that in the end_of_list form ..i.e,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM event_list.
  t_event-name = slis_ev_end_of_list.
  t_event-form = 'END_OF_LIST'.
  APPEND t_event TO it_event.
endform.

FORM end_of_list.
  DELETE ADJACENT DUPLICATES FROM it_detail COMPARING own_no.
  DESCRIBE TABLE it_detail LINES v_owner_count.
  WRITE:/ 'TOTAL COUNT: ', v_owner_count.
  WRITE:/ 'TOTAL AMOUNT:', v_tot.
  SORT t_temp_det BY gl_acct_no.
  LOOP AT t_temp_det.
    AT END OF gl_acct_no .
      SUM.
      WRITE:/ t_temp_det-gl_acct_no,' ', t_temp_det-gl_trans_am.
    ENDAT.
  ENDLOOP.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 10:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577026#M260487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T10:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-Displaying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577027#M260488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is this gl_trans_am..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 10:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577027#M260488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T10:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-Displaying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577028#M260489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi RK,&lt;/P&gt;&lt;P&gt;  that is a field( Amount ) which was specific to my requirement ... If your problem is solved . Please mark the helpful answers and close the thread ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reggards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 10:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577028#M260489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T10:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV-Displaying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577029#M260490</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 understood that was for ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to sort based on 1 field (Male and female)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 10:46:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-displaying/m-p/1577029#M260490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T10:46:30Z</dc:date>
    </item>
  </channel>
</rss>

