<?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: Diff. b/w convertions and interface. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394771#M532840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversions Program - mainly used for master data &lt;/P&gt;&lt;P&gt;migration. Mostly will be executed standalone and &lt;/P&gt;&lt;P&gt;once .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface Programs - These program will be executed &lt;/P&gt;&lt;P&gt;periodically for Transaction data upload(may be &lt;/P&gt;&lt;P&gt;for some periodic report). So these programs are&lt;/P&gt;&lt;P&gt;scheduled.&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;reena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 12:24:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T12:24:14Z</dc:date>
    <item>
      <title>Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394766#M532835</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;Any body please explain what is the difference between conversion and interfaces ? and how many types of interfaces or there in ABAP ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Ramana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394766#M532835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394767#M532836</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;The words were chosen for what they mean. A conversion means data that is converted from one format to another format and from one system to another. So when you first implement SAP, you are actually replacing some of your legacy systems, but you are not completely trashing the data. You still need some of that data from the systems that are being replaced. So you pull the data out of your legacy systems and put them on some files. You then want to load that data into your new SAP system. That is when you write some programs which will read that data and load it into SAP. Imagine you had a home grown purchasing system. You are now replacing all that with SAP. But until SAP goes live, you want to keep using your home grown purchasing system. So during go live, you want to transfer the POs from your legacy system to SAP. Now a PO in your legacy system may not have the same fields as a PO in SAP. So you convert the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfacing is connecting two or more different entities. In our case, it is connecting one or more systems with SAP. Now extending our previous example, you are replacing some legacy applications but there are some applications that you don't want to replace yet. You need to somehow pass data back and forth between SAP and these remaining systems. Data may be going one way or the other way or both ways. You will still need to do some data transformations/translations etc to make the data understandable to the receiving system. This will continue as long as you want to keep the systems running alongside SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, conversions are written to load data into SAP onetime. These are typically file based.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces are written to exchange/update/send/receive data between SAP and other systems on an ongoing basis. These can be in many forms, file based, idoc based, real time(business connector, XI etc are useful in this), xml, and the list goes on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;Reward all the helpful answers&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:17:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394767#M532836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394768#M532837</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 and Interfaces are two different workstreams in SAP/ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversions are mainly centered around uploading/downlaoding data to/from legacy and SAP system.The various methods which could be used to do it are&lt;/P&gt;&lt;P&gt;1.BDC&lt;/P&gt;&lt;P&gt;2.LSMW&lt;/P&gt;&lt;P&gt;3.Custom Programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces are the means of connection between legacy and SAP system.Interfaces centre around how the data will be sent to/from legacy and SAP system.&lt;/P&gt;&lt;P&gt;Interfaces are generally carried out using IDOC's in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:21:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394768#M532837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394769#M532838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Interface and Conversion program with BDC are same.&lt;/P&gt;&lt;P&gt;Only the difference in the mode of execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The words were chosen for what they mean. A conversion means data that is converted from one format to another format and from one system to another. So when you first implement SAP, you are actually replacing some of your legacy systems, but you are not completely trashing the data. You still need some of that data from the systems that are being replaced. So you pull the data out of your legacy systems and put them on some files. You then want to load that data into your new SAP system. That is when you write some programs which will read that data and load it into SAP. Imagine you had a home grown purchasing system. You are now replacing all that with SAP. But until SAP goes live, you want to keep using your home grown purchasing system. So during go live, you want to transfer the POs from your legacy system to SAP. Now a PO in your legacy system may not have the same fields as a PO in SAP. So you convert the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfacing is connecting two or more different entities. In our case, it is connecting one or more systems with SAP. Now extending our previous example, you are replacing some legacy applications but there are some applications that you don't want to replace yet. You need to somehow pass data back and forth between SAP and these remaining systems. Data may be going one way or the other way or both ways. You will still need to do some data transformations/translations etc to make the data understandable to the receiving system. This will continue as long as you want to keep the systems running alongside SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, conversions are written to load data into SAP onetime. These are typically file based.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces are written to exchange/update/send/receive data between SAP and other systems on an ongoing basis. These can be in many forms, file based, idoc based, real time(business connector, XI etc are useful in this), xml, and the list goes on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394769#M532838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394770#M532839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The words were chosen for what they mean. A conversion means data that is converted from one format to another format and from one system to another. So when you first implement SAP, you are actually replacing some of your legacy systems, but you are not completely trashing the data. You still need some of that data from the systems that are being replaced. So you pull the data out of your legacy systems and put them on some files. You then want to load that data into your new SAP system. That is when you write some programs which will read that data and load it into SAP. Imagine you had a home grown purchasing system. You are now replacing all that with SAP. But until SAP goes live, you want to keep using your home grown purchasing system. So during go live, you want to transfer the POs from your legacy system to SAP. Now a PO in your legacy system may not have the same fields as a PO in SAP. So you convert the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfacing is connecting two or more different entities. In our case, it is connecting one or more systems with SAP. Now extending our previous example, you are replacing some legacy applications but there are some applications that you don't want to replace yet. You need to somehow pass data back and forth between SAP and these remaining systems. Data may be going one way or the other way or both ways. You will still need to do some data transformations/translations etc to make the data understandable to the receiving system. This will continue as long as you want to keep the systems running alongside SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, conversions are written to load data into SAP onetime. These are typically file based.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfaces are written to exchange/update/send/receive data between SAP and other systems on an ongoing basis. These can be in many forms, file based, idoc based, real time(business connector, XI etc are useful in this), xml, and the list goes on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface is primarily used when we are transferring data from /to R/3 from another system.&lt;/P&gt;&lt;P&gt;This link will tell you all about Interfaces -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2912824"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3255157"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3549078"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3265318"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3239305"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394770#M532839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. b/w convertions and interface.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394771#M532840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversions Program - mainly used for master data &lt;/P&gt;&lt;P&gt;migration. Mostly will be executed standalone and &lt;/P&gt;&lt;P&gt;once .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface Programs - These program will be executed &lt;/P&gt;&lt;P&gt;periodically for Transaction data upload(may be &lt;/P&gt;&lt;P&gt;for some periodic report). So these programs are&lt;/P&gt;&lt;P&gt;scheduled.&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;reena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 12:24:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-convertions-and-interface/m-p/2394771#M532840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T12:24:14Z</dc:date>
    </item>
  </channel>
</rss>

