<?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: classical reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838149#M356490</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;    Once you've collected all the data into the internal table you sort the internal table on the key field and delete the duplicate adjacent rows so that you would end up deleting all the reduntant data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's suppose the internal table is itab.&lt;/P&gt;&lt;P&gt;after having possessed data into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort itab.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jan 2007 09:33:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-09T09:33:28Z</dc:date>
    <item>
      <title>classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838144#M356485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;           I am Srikanth, and i have generated report on customer order details. In that report thier is lot of redundant data.So please explain me how to delete that redundant data with coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;M.Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:26:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838144#M356485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838145#M356486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to delete duplicate fields from internal tables , then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;delete adjacent duplicates from itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838145#M356486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838146#M356487</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;Once you framed the output internal table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here itab is the internal table name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838146#M356487</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-09T09:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838147#M356488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) for deleting duplicates -&lt;/P&gt;&lt;P&gt;use delete adjacent duplicates from itab.&lt;/P&gt;&lt;P&gt;2) if u want to delete redundant data based on some condition then u can use delete with where clause on ur internal table and then print this formatted Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838147#M356488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838148#M356489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;delete adjacent duplicates from itab comparing &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838148#M356489</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2007-01-09T09:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838149#M356490</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;    Once you've collected all the data into the internal table you sort the internal table on the key field and delete the duplicate adjacent rows so that you would end up deleting all the reduntant data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's suppose the internal table is itab.&lt;/P&gt;&lt;P&gt;after having possessed data into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort itab.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838149#M356490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838150#M356491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before that use Sort Statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT &amp;lt;itab&amp;gt; [ASCENDING|DESCENDING] [AS TEXT] [STABLE]&lt;/P&gt;&lt;P&gt;           ... BY &amp;lt;fi&amp;gt; [ASCENDING|DESCENDING] [AS TEXT]...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorts the internal table &amp;lt;itab&amp;gt;. If you omit the BY addition, the table is sorted by its key. You can define a different sort key by using the BY addition. The other additions specify whether you want to sort in ascending or descending order, and whether strings should be sorted alphabetically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATE ENTRIES FROM &amp;lt;itab&amp;gt; [COMPARING... ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deletes adjacent duplicate entries, either by comparing the key fields or the comparison fields specified explicitly in the COMPARING addition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838150#M356491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: classical reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838151#M356492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to delete duplicate fields from internal tables , then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:36:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-reports/m-p/1838151#M356492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:36:12Z</dc:date>
    </item>
  </channel>
</rss>

