Skip to main content

YCLASSICAL_JOINING

*&---------------------------------------------------------------------* *& Report  YCLASSICAL_JOINING *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT   yclassical_joining  NO   STANDARD   PAGE  HEADING                               LINE - SIZE   110                               LINE - COUNT   255                               MESSAGE - ID  z...

Difference Between ALE and EDI in SAP ABAP

Difference Between ALE and EDI in SAP ABAP

The main difference between ALE and EDI is ALE used for internal communications within the SAP Environment and EDI is meant for external communications that is communicating with Non-systems.
ALE(Application Link Enabling):
ALE is technology for SAP ,is used to transfer data between SAP systems.
ALE is used to support integrated processes across several SAP systems.
ALE includes controlled exchange of data messages guarantying data consistency across loosely coupled applications. ALE consists three layers which are Application Services , Distribution Services and Communication Services.
ALE provides a distributed and fully integrated R/3 system. Each application is self-capable. The use of self-capable system implies a certain measure of data redundancy.Hence data has to be both distributed and synchronized.
ALE uses an IDOC format to exchange data between systems, both participating systems should understand the IDOC format.
ALE transfers the data using memory buffers whereas EDI uses file port to transfer the data.
Distribution of applications between specific releases of R/3 Systems
Continued records alternate after a release upgrade without requiring special protection
Customer-specific extensions.
Communication interfaces that allow connections to non-SAP structures.
Coupling of R/three and R/2 Systems.
EDI( Electronic Data Interchange )
EDI means Electronic Data Interchange, is the electronic exchange of structured business data between different applications. Such as purchase orders, invoices, inquiries, planning, acknowledgements, pricing, order status, scheduling, test results, shipping and receiving, payments, and financial reporting.
When you are using EDI technology you always need a translator to convert the IDOC to X12 (Outbound), X12 to IDOC (Inbound).But in the case of ALE you don’t reuire a translator.
EDI Architecture contains EDI-enabled applications which support the automatic processing of business transactions.
The IDoc interface which consists of IDoc types and function modules that form the interface to the application.
The EDI subsystem which converts the IDoc types into EDI message types and vice versa. This component of the EDI architecture is not provided by SAP.
EDI is the independent technology use to transfer data between two systems, they can be SAP systems or non SAP systems.
Below following tasks related to EDI processing:
Conversion of data·
Message and Interchange Handling.
Communication·
Administration of partner profiles·
Monitoring of processing
All data is transferred in files between the R/3 System and the EDI subsystem. Synchronous RFC (Remote Function Call) is implemented to define the time of transfer for a file between the two systems.
Improves data accuracy
With EDI business can eliminate the need to re-enter data from paper documents and thus prevent potential data entry errors.
Lowers personnel costs
EDI can help companies reduce the need for personnel involved in orders and accounting processing. Speeds up information exchange- EDI systems can shorten the lead time between receipt and fulfillment of orders.
Reduces technical complexity related to data interchange
With EDI companies use standardized data formats to exchange documents. EDI allows companies using different business applications and systems to achieve computer-to-computer electronic exchange of business documents.
End

Comments

Popular posts from this blog

ALV Field Catalog in SAP ABAP

ALV Field Catalog in SAP ABAP Field Catalog Field catalog is an internal table which is used to pass a list of fields to display in ALV report, we can set different properties to fields that will be display in ALV output. Type Group It is a data dictionary object which contains all the reusable user-defined types. Example for a type group is SLIS, which contains all the user-defined types for developing ALV reports. TYPE-POOLS is a keyword which is used to assign the type-group to a ALV report . Syntax : TYPE-POOLS SLIS . DATA : <IT_FCAT> TYPE SLIS_T_FIELDCAT_ALV . "INTERNAL TABLE FOR FIELD CATALOG DATA : <WA_FCAT> TYPE SLIS_FIELDCAT_ALV . " WORK AREA FOR FIELD CATLOG Field catalog types Field catalog: Field catalog is a format description of the display area. There are three procedures to build a FIELD CATALOG. 1. Automatic field catalog. 2. Semi-automatic field catalog. 3. Manual field catalog. Automatic field catalog. If the list structure has ...

SAP ABAP Interview Questions for Freshers

SAP ABAP Interview Questions for Freshers Are you start learning SAP ABAP course ? do you want to select for interview? are you searching for questions ,here i gathered some important and basic interview questions for freshers which are useful for learning stage ABAP developers . What is SAP? SAP means Systems Applications and Productions .It is ERP Package that is Enterprise Resource Planning Software and It is also name of the Company. SAP Software was established in 1972 by Wellenreuther, Hopp, Hector, Plattner and Tschira. SAP system means integration of a number of fully integrated modules which handles virtually every angle of the business management. SAP Software competitive languages in the market are Oracle, Microsoft Dynamics etc. What is SAP ABAP ? ABAP is a 4th Generation Language which is used to develop SAP Modules applications that are business scenarios of any Enterprise or organisation. ABAP language executed in the 3 tier architecture of SAP System...

Top 35 SAP ABAP Interview Questions

Top 35 SAP ABAP Interview Questions 1) What is SAP ABAP? SAP is a type of software known as ERP (Enterprise Resource Planning) that large company use to manage their day to day affairs. ABAP (Advanced Business Application Programming) is the coding language for SAP to develop RICEFW objects. (Reports, Interfaces, Extensions, Forms and Workflows). 2) What do you mean by an ABAP data dictionary? To describe the logical structures of the objects that are used in application development ABAP 4 data dictionary is used. It is also used to show the underlying relational database in tables. 3) Explain the difference between pool tables and transparent tables? Transparent tables: It has one to one relation with the table in the database. Its structure corresponds to single database field. Pooled tables: It has many to one relation with the table in the database. Pooled tables are stored at the database level. a) Basic List: For simple reports b) Statistics: For Percentage, ...