<?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/3127291#M742813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interfaces-Transfering data from legacy system to SAP using Batch Data Communication and LSMW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2007 11:12:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-28T11:12:53Z</dc:date>
    <item>
      <title>Interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127290#M742812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Can you please explain what are interfaces all about in ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Rahul..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 11:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127290#M742812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T11:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127291#M742813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interfaces-Transfering data from legacy system to SAP using Batch Data Communication and LSMW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 11:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127291#M742813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T11:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127292#M742814</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;in one sentence , interface linking between servers , sap and non-sap systems.&lt;/P&gt;&lt;P&gt;for that, BAPI, ALE  like  lot of methods r there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more information refer in search forums&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 11:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127292#M742814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Interfaces</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127293#M742815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in object oriented point of view....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces&lt;/P&gt;&lt;P&gt;In ABAP interfaces are implemented in addition to, and independently of classes. An interface only has a declaration part, &lt;/P&gt;&lt;P&gt;and do not have visibility sections. Components (Attributes, methods, constants, types) can be defined the same way as in classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Interfaces are listed in the definition part lof the class, and must always be in the PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;· Operations defined in the interface atre impemented as methods of the class. All methods of the interface&lt;/P&gt;&lt;P&gt;must be present in the implementation part of the class.&lt;/P&gt;&lt;P&gt;· Attributes, events, constants and types defined in the interface are automatically available to the class &lt;/P&gt;&lt;P&gt;carrying out the implementation.&lt;/P&gt;&lt;P&gt;· Interface components are addressed in the class by display.&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;Interfaces are needed when we need data from other than SAP envoronment and vise versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose aclient may send his business data through Excel sheet which are to be loaded in his SAP Tables.Then we need to use interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two Categogies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.From Presentation Layer to your ABAP Program(and then into Database table) &lt;/P&gt;&lt;P&gt;Presentation layer means from your sytem (from C, drives)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.From application Server to your ABAP Program(and then into Database table) &lt;/P&gt;&lt;P&gt;Application Server means the server for your Sap System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the first case you need to use:From Presentation Layer to your ABAP Program and vise versa)&lt;/P&gt;&lt;P&gt;GUI_UPLOAD to upload data,&lt;/P&gt;&lt;P&gt;GUI_DOWNLOAD to download data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the Second case(From application Server to your ABAP Program and vise versa)&lt;/P&gt;&lt;P&gt;A.OPEN DATA SET FILE NAME ON APPL.SERVER FOR INPUT ENCODING BY DEFAULT. use tranfer command to send data to application server&lt;/P&gt;&lt;P&gt;B. CLOSE DATA SET.&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;vasu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 11:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interfaces/m-p/3127293#M742815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T11:16:52Z</dc:date>
    </item>
  </channel>
</rss>

