<?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: statement declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248470#M1014044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;For the first one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B type A: it will create a work area which will hold only one record at a time similar to the structure defined with TYPES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B type Table of A : This statement defines an internal table which is similar to the structure that has defined with TYPES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS-DATA: The statement CLASS-DATA can only be used in the declaration part part of a class or an interface.The statement declares a static attribute which validity is not associated with instances of a class but with the class itself. All instances of the class and its subclasses access the same static attribute. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sneha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 14:52:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-11T14:52:11Z</dc:date>
    <item>
      <title>statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248466#M1014040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Please let me know what is the difference between the below mentioned two declarations:&lt;/P&gt;&lt;P&gt;Types:Begin of A,&lt;/P&gt;&lt;P&gt;no TYPE i,&lt;/P&gt;&lt;P&gt;name TYPE i,&lt;/P&gt;&lt;P&gt;wage TYPE i,&lt;/P&gt;&lt;P&gt;END OF A.&lt;/P&gt;&lt;P&gt;*I want to know the difference between these three statements:&lt;/P&gt;&lt;P&gt;B TYPE A.&lt;/P&gt;&lt;P&gt;B TYPE TABLE OF A&lt;/P&gt;&lt;P&gt;CLASS_DATA: B TYPE TABLE OF A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248466#M1014040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248467#M1014041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;B type A ====creates a Work Area of A structure,&lt;/P&gt;&lt;P&gt;B type table of A === creates an internal table without header line of A structure&lt;/P&gt;&lt;P&gt;3rd one its OOps concept off declaring a STATIC ATTRIBUTES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bala Krishna on Aug 11, 2008 7:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248467#M1014041</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-08-11T14:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248468#M1014042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPES used to declare structures.&lt;/P&gt;&lt;P&gt;DATA is actually where memory allocates&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248468#M1014042</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-08-11T14:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248469#M1014043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: B TYPE A.&lt;/P&gt;&lt;P&gt;Creates a work area with the structure of type A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: B TYPE TABLE OF A.&lt;/P&gt;&lt;P&gt;Creates an internal table w/o header line with the structure of type A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS_DATA: B TYPE TABLE OF A.&lt;/P&gt;&lt;P&gt;Can be included in a class definition and will create a static attribute valid not only for the instances but for the class. The value can be accessed with class=&amp;gt;b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:34:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248469#M1014043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T14:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248470#M1014044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;For the first one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B type A: it will create a work area which will hold only one record at a time similar to the structure defined with TYPES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B type Table of A : This statement defines an internal table which is similar to the structure that has defined with TYPES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS-DATA: The statement CLASS-DATA can only be used in the declaration part part of a class or an interface.The statement declares a static attribute which validity is not associated with instances of a class but with the class itself. All instances of the class and its subclasses access the same static attribute. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sneha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248470#M1014044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T14:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: statement declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248471#M1014045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;B TYPE A  : work area declaration here we are providing single value only.&lt;/P&gt;&lt;P&gt;B TYPE TABLE OF A : internal table declaration here we r providing multipul values.&lt;/P&gt;&lt;P&gt;CLASS_DATA: B TYPE TABLE OF A.: i dont no Exactly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;regards,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/statement-declaration/m-p/4248471#M1014045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T15:11:13Z</dc:date>
    </item>
  </channel>
</rss>

