Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Interface

Former Member
0 Kudos

What is an interface ?

What are conversions ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

DIFFERENCE BETWEEN CONVERSION AND INTERFACE:

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.

Ex: BDC,LSMW

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.

Ex: idoc,bapi

In short, conversions are written to load data into SAP onetime. These are typically file based.

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.

Reward if it useful....

Thanks in advance

Lakshmi.

4 REPLIES 4

Sm1tje
Active Contributor
0 Kudos

Actually in context of Data Transfer, Interface is 'everything' in between two (SAP or NON-SAP) applications like an IDoc Interface or a BAPI (RFC) interface. Interface has a very broad meaning in this context as well. Many interfaces can be created.

Conversions in data transfer normally means that some data has to converted in order to save the data in R/3 for example.

For example if document type from external system for Invoice = 'INC' while in SAP this is 'IN' the data needs to be converted first, before posting the document in SAP.

Former Member
0 Kudos

Hi Manjunath,

Conversions : It involves process of uploading the data from legacy system to SAP system.i.e.,Only one way of communication from

Legacy---->SAP

Data is extracted from Legacy system.That data is chceked for the consistencies,unwanted data is removed from that and segregated in a flat file.This flat file is used and data is uploaded into SAP DB.

Interfaces : This involves several techniques of transfer of data from SAP->Non-SAP and as well as Non-SAP>SAP.

Several methods are : EDI, ALE/IDocs...

Award points if useful

Thanks,

Ravee..

Former Member
0 Kudos

Hi,

DIFFERENCE BETWEEN CONVERSION AND INTERFACE:

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.

Ex: BDC,LSMW

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.

Ex: idoc,bapi

In short, conversions are written to load data into SAP onetime. These are typically file based.

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.

Reward if it useful....

Thanks in advance

Lakshmi.

Former Member
0 Kudos

Hi,

Interface:it is a program that performs communication with External system from SAP.

There are two types of interfaces:

1. Inbound Interface: External system sends the data to SAP

2. Outbound Interface: SAP sends the data to External system.

Basically interfaces are implemented using RFC, BAPI, ALE/IDOC.

INTERFACE programs are the ones which are run at regular intervals, say weekly, monthly or even daily.

Here the legacy system continues to co-exist along with SAP system, the legacy system might be useful

for certain functionalities but the data might have to run thru SAP transactions for complex data maintenance

at regular intervals.

Interface programs are those programs in which you fetch the data from the application server and process on theose data.

These are helpful when you have to run any program in the backgroup when the presentation server is not working.

Conversion:

Migration of data from Legacy system before GO Live (One time data transfer).

So Conversions are always INBOUND interfaces.

Conversions are performed using Batch input(BDC), LSMW and BAPI.

CONVERSION programs are the ones which have one time usage, usually when a legacy system is being replaced by a system

like SAP, then the data has to be mapped from the legacy system to SAP system. Here the data to be converted is given on

a flat file & is uploaded to SAP tables mostly using LSMW only. Conversions programs are BDC,BAPI and LSMW programs

in which you upload all the related tables from the flat files.Those are one time programs.

Interface programs are those programs in which you fetch the data from the application server and process on theose data.

These are helpful when you have to run any program in the backgroup when the presentation server is not working.

In Simple

CONVERSIONS : Converting Legacy System DATA into a flat file

INTERFACES : Converting Flat File into SAP

Regards,

Raj.