<?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: interfaces in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282922#M785141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi lavanya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An interface can be composed of nay number of different component interfaces.All the interfaces are equllay valid on one level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a component interface itself is a composite ie,it contains its own component interfaces-then the nesting  hierarchy is irrevelant for the composition of the interface.it is relevant ,however for accessing the interface components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To access sa component comp of a component interface ifac within a composite interface,you can use the expression ifac&lt;SUB&gt;comp with the interface component selector(&lt;/SUB&gt;).Multiple use of interface component selector in an identifier (such as ifac1&lt;SUB&gt;ifac2&lt;/SUB&gt;comp ) is generally not supported.&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;sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jan 2008 12:37:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-11T12:37:23Z</dc:date>
    <item>
      <title>interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282919#M785138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  i have some doubts about interfaces . can we declares interfaces inside   interface ie am talking about classes and interfaces . If possible how  to access insider  interface and how to implement it. Any information is credited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you .&lt;/P&gt;&lt;P&gt;lavanya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: lavanya reddy on Jan 11, 2008 11:43 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 10:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282919#M785138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T10:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282920#M785139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/22/042427488911d189490000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/22/042427488911d189490000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other type of Interfaces are&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/ec/d9ab291b0b11d295400000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/ec/d9ab291b0b11d295400000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/sap/interfaces/" target="test_blank"&gt;http://www.erpgenie.com/sap/interfaces/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 10:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282920#M785139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T10:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282921#M785140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes we can declare the interface with in the interface.&lt;/P&gt;&lt;P&gt;please check the fallowing program which will describes&lt;/P&gt;&lt;P&gt;the way how to declare the interface with in the another interface and how to implement it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface if1.&lt;/P&gt;&lt;P&gt; methods:m1,&lt;/P&gt;&lt;P&gt;         m2.&lt;/P&gt;&lt;P&gt;endinterface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface if2.&lt;/P&gt;&lt;P&gt;methods:m3.&lt;/P&gt;&lt;P&gt;interfaces:if1.&lt;/P&gt;&lt;P&gt;endinterface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class a definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;   interfaces:if2.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class a implementation.&lt;/P&gt;&lt;P&gt;method if2~m3.&lt;/P&gt;&lt;P&gt;write:/ 'This is second interface method'.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;method if1~m1.&lt;/P&gt;&lt;P&gt;write:/ 'This is first interface method1'.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;method if1~m2.&lt;/P&gt;&lt;P&gt;write:/ 'This is first interface method2'.&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;start-of-selection.&lt;/P&gt;&lt;P&gt;data:obj type ref to a.&lt;/P&gt;&lt;P&gt;create object obj.&lt;/P&gt;&lt;P&gt;call method:obj-&amp;gt;if2~m3.&lt;/P&gt;&lt;P&gt;call method:obj-&amp;gt;if1~m1.&lt;/P&gt;&lt;P&gt;call method:obj-&amp;gt;if1~m2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 10:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282921#M785140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T10:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282922#M785141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi lavanya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An interface can be composed of nay number of different component interfaces.All the interfaces are equllay valid on one level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a component interface itself is a composite ie,it contains its own component interfaces-then the nesting  hierarchy is irrevelant for the composition of the interface.it is relevant ,however for accessing the interface components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To access sa component comp of a component interface ifac within a composite interface,you can use the expression ifac&lt;SUB&gt;comp with the interface component selector(&lt;/SUB&gt;).Multiple use of interface component selector in an identifier (such as ifac1&lt;SUB&gt;ifac2&lt;/SUB&gt;comp ) is generally not supported.&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;sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 12:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282922#M785141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T12:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282923#M785142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got my answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 12:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3282923#M785142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T12:39:27Z</dc:date>
    </item>
  </channel>
</rss>

