<?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: BAPI - doubt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111995#M441553</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ganesh,&lt;/P&gt;&lt;P&gt;chk this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/a5/3ec8534ac011d1894e0000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/a5/3ec8534ac011d1894e0000e829fbbd/content.htm&lt;/A&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;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2007 05:22:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-02T05:22:50Z</dc:date>
    <item>
      <title>BAPI - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111994#M441552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi SDN'rs,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What is the use of Interface in a Business Object .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 05:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111994#M441552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T05:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111995#M441553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ganesh,&lt;/P&gt;&lt;P&gt;chk this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/a5/3ec8534ac011d1894e0000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/a5/3ec8534ac011d1894e0000e829fbbd/content.htm&lt;/A&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;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 05:22:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111995#M441553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T05:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111996#M441554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ganesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hopen this helps&lt;/P&gt;&lt;P&gt;Interfaces are independent structures that you can implement in a class to extend the scope of that class.a universal point of contact.They provide one of the pillars of polymorphism, since they allow a single method within an interface to behave differently in different classes. &lt;/P&gt;&lt;P&gt;Can be declared globally or locally within a program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Locally declared in the global portion of a program using:-&lt;/P&gt;&lt;P&gt;INTERFACE &amp;lt;intf&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDINTERFACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The definition contains the declaration for all components (attributes, methods, events) of the interface. They automatically belong to the public section of the class in which the interface is implemented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces do not have an implementation part, since their methods are implemented in the class that implements the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces do not have instances. &lt;/P&gt;&lt;P&gt;To implement an interface in a class, use the statement&lt;/P&gt;&lt;P&gt;INTERFACES &amp;lt;intf&amp;gt;.&lt;/P&gt;&lt;P&gt;in the declaration part of the class.&lt;/P&gt;&lt;P&gt;A component &amp;lt;icomp&amp;gt; of an interface &amp;lt;intf&amp;gt; can be addressed as though it were a member of the class under the name &amp;lt;intf~icomp&amp;gt;. &lt;/P&gt;&lt;P&gt;Interface References &lt;/P&gt;&lt;P&gt;Addressing Objects Using Interface References &lt;/P&gt;&lt;P&gt;Using the class reference variable &amp;lt;cref&amp;gt;:&lt;/P&gt;&lt;P&gt;To access an attribute &amp;lt;attr&amp;gt;: &amp;lt;cref&amp;gt;-&amp;gt;&amp;lt;intf~attr&amp;gt; &lt;/P&gt;&lt;P&gt;To call a method &amp;lt;meth&amp;gt;: CALL METHOD &amp;lt;cref&amp;gt;-&amp;lt;intf~meth&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the interface reference variable &amp;lt;iref&amp;gt;: &lt;/P&gt;&lt;P&gt;To access an attribute &amp;lt;attr&amp;gt;: &amp;lt; iref&amp;gt;-&amp;gt;&amp;lt;attr&amp;gt;&lt;/P&gt;&lt;P&gt;To call a method &amp;lt;meth&amp;gt;: CALL METHOD &amp;lt;iref&amp;gt;-&amp;gt;&amp;lt;meth&amp;gt;&lt;/P&gt;&lt;P&gt;Addressing a constant &amp;lt;const&amp;gt;: &amp;lt; intf&amp;gt;=&amp;gt;&amp;lt;const&amp;gt; (Cannot use class name).&lt;/P&gt;&lt;P&gt;Addressing a static attribute &lt;/P&gt;&lt;P&gt;&amp;lt;attr&amp;gt;: &amp;lt; class&amp;gt;=&amp;gt;&amp;lt;intf~attr&amp;gt;&lt;/P&gt;&lt;P&gt;Calling a static method &amp;lt;meth&amp;gt;: CALL METHOD &amp;lt;class&amp;gt;=&amp;gt;&amp;lt;intf~meth&amp;gt;&lt;/P&gt;&lt;P&gt;(Cannot use Interface method ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;simple program.&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ysubdel .&lt;/P&gt;&lt;P&gt;interface i1.&lt;/P&gt;&lt;P&gt;data : num type i .&lt;/P&gt;&lt;P&gt;methods : meth1.&lt;/P&gt;&lt;P&gt;endinterface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class c1 definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;methods : meth1. &lt;/P&gt;&lt;P&gt;interfaces : i1.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class c1 implementation.&lt;/P&gt;&lt;P&gt;method : meth1.&lt;/P&gt;&lt;P&gt;write:/5 'I am meth1 in c1'.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method i1~meth1.&lt;/P&gt;&lt;P&gt;write:/5 'I am meth1 from i1'.&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 : oref type ref to c1. create object oref.&lt;/P&gt;&lt;P&gt;write:/5 oref-&amp;gt;i1~num.&lt;/P&gt;&lt;P&gt;call method oref-&amp;gt;meth1.&lt;/P&gt;&lt;P&gt;call method oref-&amp;gt;i1~meth1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u acan also refeer the following link&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://www.sapgenie.com/interfaces/index.htm"&amp;gt;http://www.sapgenie.com/interfaces/index.htm&amp;lt;/a&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;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;navjot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        navjot sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 05:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111996#M441554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T05:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111997#M441555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;BAPIs are Standarized interface for accessing the business data of the SAP System from another &lt;/P&gt;&lt;P&gt;SAP System / External System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 05:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111997#M441555</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-04-02T05:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111998#M441556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOR:&lt;/P&gt;&lt;P&gt;it is now the central access point for external applications to access SAP business object types, SAP interface types and their BAPIs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BOR has two essential functions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It defines and describes SAP business objects and SAP interface types and their BAPIs.&lt;/P&gt;&lt;P&gt;If you are developing an application program, you retrieve details of the SAP business object types or SAP interface types, their key fields and their BAPI methods from the BOR. The BOR contains all the information you need to integrate the correct object type definitions and BAPI calls into your application program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It creates instances of SAP business objects. &lt;/P&gt;&lt;P&gt;The runtime environment of the BOR receives requests to create runtime objects from client applications and creates the appropriate object instances &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please visit this link also,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/7e/5e11c24a1611d1894c0000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/7e/5e11c24a1611d1894c0000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramganesan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 05:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-doubt/m-p/2111998#M441556</guid>
      <dc:creator>former_member189631</dc:creator>
      <dc:date>2007-04-02T05:53:19Z</dc:date>
    </item>
  </channel>
</rss>

