<?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: How this Function will work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820051#M659599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;circle=&amp;gt;circumference( radius ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means In a CLASS CIRCLE, u r calling the Method Circumfrence passing the value radius to the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; circle=&amp;gt;area( radius ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a class CIRCLE, u are calling the method AREA passing the radius as variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2007 16:44:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-27T16:44:15Z</dc:date>
    <item>
      <title>How this Function will work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820050#M659598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Below these are my variables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Circ&lt;/P&gt;&lt;P&gt;Circle&lt;/P&gt;&lt;P&gt;Circumference&lt;/P&gt;&lt;P&gt;radius&lt;/P&gt;&lt;P&gt;Area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and now i want to know what is this below  syntax means. i mean to ask below they r using " =&amp;gt;" how this function will work exactly plz can anyone explain me ,it will be great helpful to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;circ = circle=&amp;gt;circumference( radius ).&lt;/P&gt;&lt;P&gt;area = circle=&amp;gt;area( radius ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 16:38:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820050#M659598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T16:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: How this Function will work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820051#M659599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;circle=&amp;gt;circumference( radius ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means In a CLASS CIRCLE, u r calling the Method Circumfrence passing the value radius to the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; circle=&amp;gt;area( radius ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a class CIRCLE, u are calling the method AREA passing the radius as variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 16:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820051#M659599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T16:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: How this Function will work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820052#M659600</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;It is a &amp;lt;b&amp;gt;Class Component Selector&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The label  &amp;lt;b&amp;gt;class=&amp;gt;comp&amp;lt;/b&amp;gt; can be used to access a static component comp of a class without an instance of the class having to be created. The character =&amp;gt; is the class component selector. The label class of a class must be to the left of the class component selector. The name comp of the component must be to the right of the object component selector. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The class component selector can also be used to access the data types and constants of an interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ifac=&amp;gt;type, ifac=&amp;gt;const &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The label ifac of an interface must be to the left of the class component sector. The name type of a data type defined with TYPES or a constant defined with CONSTANTS must be to the right of the object component selector. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Note&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;It is also possible to access the static components of a class using the object component selector if an instance of the class was created. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Example&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Declaration of a class factory and access to its static attribute oref. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS factory DEFINITION CREATE PRIVATE. &lt;/P&gt;&lt;P&gt;  PUBLIC SECTION. &lt;/P&gt;&lt;P&gt;    CLASS-DATA oref TYPE REF TO factory. &lt;/P&gt;&lt;P&gt;    CLASS-METHODS class_constructor. &lt;/P&gt;&lt;P&gt;    METHODS do_something. &lt;/P&gt;&lt;P&gt;ENDCLASS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS factory IMPLEMENTATION. &lt;/P&gt;&lt;P&gt;  METHOD class_constructor. &lt;/P&gt;&lt;P&gt;    CREATE OBJECT oref. &lt;/P&gt;&lt;P&gt;  ENDMETHOD. &lt;/P&gt;&lt;P&gt;  METHOD do_something. &lt;/P&gt;&lt;P&gt;    ... &lt;/P&gt;&lt;P&gt;  ENDMETHOD. &lt;/P&gt;&lt;P&gt;ENDCLASS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;factory=&amp;gt;oref-&amp;gt;do_something( ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 16:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-this-function-will-work/m-p/2820052#M659600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T16:52:19Z</dc:date>
    </item>
  </channel>
</rss>

