<?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: OOPS in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790756#M340190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;u can create a local class or global Z class it's upto u, to create a global class create it in se24.&lt;/P&gt;&lt;P&gt;local class you can do it in the report  program itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a select stmt insed the method and call the mothd  by creating object to the class if the method is instance method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Dec 2006 06:39:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-18T06:39:46Z</dc:date>
    <item>
      <title>OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790751#M340185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Experts.............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How Can we write coding to retrieve data from 2 table say vbak and vbap &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;using OOPS in ABAP&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790751#M340185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790752#M340186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  There will be no diff in the select statement used to select data from the table.&lt;/P&gt;&lt;P&gt;Now if you want to use oops in this case , the you need to create a class with a method containing the slect statement to retrieve the data and the call this method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Aun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790752#M340186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790753#M340187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;   Create a class using se24, create a method having parameters according to the selection criteria and export parameters of method as the internal tables of type vbak and vbap.&lt;/P&gt;&lt;P&gt;in the method code write the appropriate statements to retrieve data from the tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call this method in your program and retrieve data from the tables.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kinshuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790753#M340187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790754#M340188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there is any difference in the select statement.&lt;/P&gt;&lt;P&gt;Write an inner join between the two tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790754#M340188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790755#M340189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;Data is retrieved from the database tables using Select statements.&lt;/P&gt;&lt;P&gt;You can embed the same inside a method of a local class which you define in your program &amp;amp; call the same(method) in START-OF-SELECTION event in your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790755#M340189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: OOPS in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790756#M340190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;u can create a local class or global Z class it's upto u, to create a global class create it in se24.&lt;/P&gt;&lt;P&gt;local class you can do it in the report  program itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a select stmt insed the method and call the mothd  by creating object to the class if the method is instance method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 06:39:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/oops-in-abap/m-p/1790756#M340190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T06:39:46Z</dc:date>
    </item>
  </channel>
</rss>

