<?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 interface/conversion programs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625085#M603153</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;What are interface/conversion programs in SAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name a few system global variables you can use in ABAP programs?&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;ASHOK KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2007 06:10:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-30T06:10:48Z</dc:date>
    <item>
      <title>interface/conversion programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625085#M603153</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;What are interface/conversion programs in SAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name a few system global variables you can use in ABAP programs?&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;ASHOK KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 06:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625085#M603153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T06:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: interface/conversion programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625086#M603154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Conversions-One time data transfer .&lt;/P&gt;&lt;P&gt;Interfaces-Regular Transfer of data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 06:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625086#M603154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T06:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: interface/conversion programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625087#M603155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Conversions - This type of transfer refers to a one-time transfer from a legacy system to the SAP system. In this case, the &amp;#147;legacy&amp;#148; system is the old system that is being replaced by the SAP system.&lt;/P&gt;&lt;P&gt;For example, the old system being replaced has data for 2,000 vendors that must be transferred to the SAP system.&lt;/P&gt;&lt;P&gt;Interfaces - This type of transfer refers to an ongoing transfer from a complimentary system to the SAP system. In this case, the &amp;#147;complimentary&amp;#148; system is a system that will run along side the SAP system.&lt;/P&gt;&lt;P&gt;For example, customer orders may be taken in another system. For the SAP system to reflect accurate information, these orders must be transferred to the SAP system every night.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC can be both interfaces or conversions depending upon the functionality above. &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;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 06:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625087#M603155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T06:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: interface/conversion programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625088#M603156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We use BDC for data Uploads from Legacy system to SAP&lt;/P&gt;&lt;P&gt;BDC programs also called as data conversions&lt;/P&gt;&lt;P&gt;we will use other interfaces like&lt;/P&gt;&lt;P&gt;RFC,BAPI, IDOC/ALE/EDI depending on the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 06:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625088#M603156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T06:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: interface/conversion programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625089#M603157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Conversion, converting legacy system data into SAP data. Meaning that it is mainly a one shot deal, for example bringing your customer master to SAP from the legacy system, converting the fields used in legacy to the fields and values used in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface, a program or group of programs that handle the passing of data from one system to another. These programs work together to export the data from one system and import into a target system, maybe these programs run once a day, maybe twice, may every hour throughout the day. It is a good way to keep the data in two or more systems in sync with each other. &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, 30 Jul 2007 06:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-conversion-programs/m-p/2625089#M603157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T06:22:05Z</dc:date>
    </item>
  </channel>
</rss>

