<?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: Reports in ABAP Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208724#M1982639</link>
    <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;subhajitsaha&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; There are many report types in sap which are used to achieve different functonality based upon different requirements as:&lt;/P&gt;&lt;P&gt;1. Classical : these are the old sap reports where you will design each and everything from rows to columns , their width n height , color and all basic functionality as sort , sum etc. by writing your  custom code. (Used only for testing by developers to get and check outhtput in fast and robust manner).&lt;/P&gt;&lt;P&gt;2. ALV : These reports are pretty nifty reports where you actually have to pass just your data(i.e. your internal tables) into some predefined SAP classes/function modules and you will have everything designed for you some of which I mentioned above. (Check in your sap system for REUSE_ALV_GRID_DISPLAY function module in SE37 tcode). Named as Abap List Viewer.&lt;/P&gt;&lt;P&gt;3. Interactive: Well this is not actually a type of report but rather an extension of ALV functionality, when you want your alv/report final display to be interactive i.e. clicking on some row gives a &lt;STRONG&gt;drill-down&lt;/STRONG&gt; functionality or there is &lt;STRONG&gt;drap-&amp;amp;-drop&lt;/STRONG&gt; functionality for alv data and so on..you can refer to some of the standard sap programs where these codes are given for refrence.&lt;/P&gt;&lt;P&gt;4. LDB reports: These reports are a very different kind of reports as you other reports mentioned above usally change with the display and UI for the report, this actually changes the functionality for your whole program and are only used in specific conditions (rather requirements). Here you mention a Logical database for that report, (this you will find frequently while working on HCM reports using &lt;STRONG&gt;LDB's&lt;/STRONG&gt; like PNP,PNPCE but even MM standard report like &lt;STRONG&gt;ME2A&lt;/STRONG&gt; also utilizes this functionality), here you have some extended functionalities like usage of event &lt;STRONG&gt;GET PERNR&lt;/STRONG&gt; in HCM LDB reports which eases your business logic and coding part makes more sense to you once you will dive deep into it later on.&lt;/P&gt;&lt;P&gt;5.Some people also consider ABAP SQVI reports usally called as &lt;STRONG&gt;ABAP query &lt;/STRONG&gt;reports as different type but it doesn't involve coding rather you can go to SQVI to create your user specific report by selecting tables and joining on some fields to finally generate a report. There is some predefined steps for this which you can google online.&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;M.M.   &lt;/P&gt;</description>
    <pubDate>Sat, 04 Apr 2020 20:59:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-04-04T20:59:34Z</dc:date>
    <item>
      <title>Reports in ABAP Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208720#M1982635</link>
      <description>&lt;P&gt;I am very new to abap programming . I need to understand in detail about the three different types of reports ..Classical, Interactive and ALV.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 11:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208720#M1982635</guid>
      <dc:creator>former_member669595</dc:creator>
      <dc:date>2020-04-03T11:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reports in ABAP Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208721#M1982636</link>
      <description>&lt;P&gt;Classical -&amp;gt; simple with WRITE statement (old, does not really exist anymore)&lt;/P&gt;&lt;P&gt;ALV --&amp;gt; Using an ALV object (grid or tree), simple to use and very quick to produce a grid or a tree&lt;/P&gt;&lt;P&gt;Interactive --&amp;gt; In your program you will have to manage event (call a transaction, ...)&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 11:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208721#M1982636</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-04-03T11:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reports in ABAP Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208722#M1982637</link>
      <description>&lt;P&gt;Hi Subhajit,&lt;/P&gt;&lt;P&gt;this link can help to understand in detail. &lt;/P&gt;&lt;P&gt;&lt;A href="https://www.gotothings.com/abap/the-different-types-of-abap-reports.htm" target="_blank"&gt;Different types of abap reports&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.tutorialspoint.com/sap_abap/sap_abap_report_programming.htm" target="_blank"&gt;Sample program for understanding&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 12:07:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208722#M1982637</guid>
      <dc:creator>Abinathsiva</dc:creator>
      <dc:date>2020-04-03T12:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reports in ABAP Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208723#M1982638</link>
      <description>&lt;P&gt;Where did you get that classification?&lt;/P&gt;&lt;P&gt;What means "classical report"? Maybe a report with one screen for entering selection criteria and one screen which outputs result with no interaction possible except buttons Execute and Back !?&lt;/P&gt;&lt;P&gt;What means "interactive report"? Maybe a report where you can enter data and store the data in database !?&lt;/P&gt;&lt;P&gt;What means "ALV report"? Maybe same as classical report but the output is via the ALV !? And so, does it mean that a "classical report" is a report which doesn't output the result via the ALV.&lt;/P&gt;&lt;P&gt;Maybe you should take a recent book published by SAP.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 18:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208723#M1982638</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-03T18:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reports in ABAP Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208724#M1982639</link>
      <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;subhajitsaha&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; There are many report types in sap which are used to achieve different functonality based upon different requirements as:&lt;/P&gt;&lt;P&gt;1. Classical : these are the old sap reports where you will design each and everything from rows to columns , their width n height , color and all basic functionality as sort , sum etc. by writing your  custom code. (Used only for testing by developers to get and check outhtput in fast and robust manner).&lt;/P&gt;&lt;P&gt;2. ALV : These reports are pretty nifty reports where you actually have to pass just your data(i.e. your internal tables) into some predefined SAP classes/function modules and you will have everything designed for you some of which I mentioned above. (Check in your sap system for REUSE_ALV_GRID_DISPLAY function module in SE37 tcode). Named as Abap List Viewer.&lt;/P&gt;&lt;P&gt;3. Interactive: Well this is not actually a type of report but rather an extension of ALV functionality, when you want your alv/report final display to be interactive i.e. clicking on some row gives a &lt;STRONG&gt;drill-down&lt;/STRONG&gt; functionality or there is &lt;STRONG&gt;drap-&amp;amp;-drop&lt;/STRONG&gt; functionality for alv data and so on..you can refer to some of the standard sap programs where these codes are given for refrence.&lt;/P&gt;&lt;P&gt;4. LDB reports: These reports are a very different kind of reports as you other reports mentioned above usally change with the display and UI for the report, this actually changes the functionality for your whole program and are only used in specific conditions (rather requirements). Here you mention a Logical database for that report, (this you will find frequently while working on HCM reports using &lt;STRONG&gt;LDB's&lt;/STRONG&gt; like PNP,PNPCE but even MM standard report like &lt;STRONG&gt;ME2A&lt;/STRONG&gt; also utilizes this functionality), here you have some extended functionalities like usage of event &lt;STRONG&gt;GET PERNR&lt;/STRONG&gt; in HCM LDB reports which eases your business logic and coding part makes more sense to you once you will dive deep into it later on.&lt;/P&gt;&lt;P&gt;5.Some people also consider ABAP SQVI reports usally called as &lt;STRONG&gt;ABAP query &lt;/STRONG&gt;reports as different type but it doesn't involve coding rather you can go to SQVI to create your user specific report by selecting tables and joining on some fields to finally generate a report. There is some predefined steps for this which you can google online.&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;M.M.   &lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2020 20:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports-in-abap-programming/m-p/12208724#M1982639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-04T20:59:34Z</dc:date>
    </item>
  </channel>
</rss>

