<?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: basics please in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425977#M541925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sdfs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 04:22:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T04:22:42Z</dc:date>
    <item>
      <title>basics please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425974#M541922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are events for Internal Table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are Events for interactive Report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are Events for Classical report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is class and methods?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Difference Between Joins and Views? Are they Same? Or NOt? If not Explain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 10:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425974#M541922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T10:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: basics please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425975#M541923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Events for Internal Table&lt;/P&gt;&lt;P&gt;AT for group change&lt;/P&gt;&lt;P&gt;Change of group when processing loops of extracts and internal tables.&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT NEW &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT END OF &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT FIRST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT &amp;lt;fg&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Events for Interactive reporting&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT PFn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classes and Methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classes in ABAP Objects can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24) in the ABAP Workbench&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS &amp;lt;class&amp;gt; DEFINITION. &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS &amp;lt;class&amp;gt; IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Methods are internal procedures in a class that define the behavior of an object. They can access all of the attributes of a class. This allows them to change the data content of an object. They also have a parameter interface, with which users can supply them with values when calling them, and receive values back from them The private attributes of a class can only be changed by methods in the same class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The definition and parameter interface of a method is similar to that of function modules. You define a method &amp;lt;met&amp;gt; in the definition part of a class and implement it in the implementation part using the following processing block:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD &amp;lt;meth&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joins&amp;amp; Views:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joins are used to select data from two or more tables. We use joins when we develop a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Views are used at the dictionary level to have a view of different data from multiple tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 10:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425975#M541923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T10:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: basics please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425976#M541924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagrut,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Events for Interactive Report:&lt;/P&gt;&lt;P&gt;     1. AT LINE SELECTION,&lt;/P&gt;&lt;P&gt;      2. AT USER COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.EVENTS FOR CLASSICAL REPORT:&lt;/P&gt;&lt;P&gt;     1.INTILIZATION,&lt;/P&gt;&lt;P&gt;     2. AT SELECTION SCREEN,&lt;/P&gt;&lt;P&gt;     3.AT SELECTION-SCREEN ON&amp;lt;FIELD&amp;gt;,&lt;/P&gt;&lt;P&gt;     4.START OF SELECTION,&lt;/P&gt;&lt;P&gt;     5. TOP OF PAGE,&lt;/P&gt;&lt;P&gt;     6. END OF PAGE,&lt;/P&gt;&lt;P&gt;     7. END OF SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.CLASS:&lt;/P&gt;&lt;P&gt;      Class is collection of objec, class does not contain memory and class contain methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. METHOD:&lt;/P&gt;&lt;P&gt;     Function is declared inside the class is called method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.Joins and Views is differ, both of them are used for show more than one table, if we use join we could not able to use any storage location, but if we use view we should use storage location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF USEFULL REWARD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 10:29:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425976#M541924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T10:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: basics please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425977#M541925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sdfs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 04:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/basics-please/m-p/2425977#M541925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T04:22:42Z</dc:date>
    </item>
  </channel>
</rss>

