Forums.Sureshkumar.net : A Perfect Place to Share Knowledge         Blogs     Games    Magazines    

"Sharing knowledge does not lessen your store, often it gets you more. Sharing plays a key role in relationships and bonding, happens in small steps and is assisted through community membership."

Go Back   SURESHKUMAR.NET FORUMS > TECHNICAL DISCUSSIONS > SAP ABAP, SAP MM, SAP DD, SAP BASICS & OTHERS
Register FAQ Members List Calendar Games Blogs Search Today's Posts Mark Forums Read

   

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 20-07-06, 01:03 PM   #1 (permalink)
Super Moderator
 
Spoorthi's Avatar
 
Join Date: Mar 2006
Posts: 4,803
Thanks: 9
Thanked 630 Times in 488 Posts
Thanks: 9
Thanked 630 Times in 488 Posts
Blog Entries: 2
Rep Power: 101 Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute
Idoc & ALE



Idoc Definition
An intermediate document (IDOC) is a container for distributing R/3 application data among between R/3, R/2 and non-SAP systems




Use
ALE uses IDocs to exchange data between logical systems. Non SAP-systems can use IDocs
as the standard interface for data transfer. IDocs are created by message types and (object)
methods when data is to be distributed. The message type is the format in which the data for a specific business process is transmitted electronically.





Structure
An IDoc represents a configuration of an Idoc Type that determines the IDoc structure. An IDoc consists of a header,
several data segments and status records. The functions of the individual elements of an IDoc are as follows:
• The contents, structure, sender, receiver and current status of the IDoc are defined in the IDoc header.
• Each data segment contains a standard header consisting of a sequential segment number, a description
of the segment type and a 1000 character long string field containing the actual data of the segment.
• The status records show the history of the processing steps applied to the IDoc so far.
Spoorthi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20-07-06, 01:05 PM   #2 (permalink)
Super Moderator
 
Spoorthi's Avatar
 
Join Date: Mar 2006
Posts: 4,803
Thanks: 9
Thanked 630 Times in 488 Posts
Thanks: 9
Thanked 630 Times in 488 Posts
Blog Entries: 2
Rep Power: 101 Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute
Re: Idoc & ALE

Structure of an IDoc



the IDoc contains a header segment that has to be the first segment of the message. Thereafter there must be at least one additional item. The following conditions apply:
•Each item must be followed by at least one sub-item and at most 99.
•Up to 9999 text segments can appear after an item’s sub-items (optional).
•The last segment in a message must be an accumulation segment (ACCUM).
Spoorthi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20-07-06, 01:06 PM   #3 (permalink)
Super Moderator
 
Spoorthi's Avatar
 
Join Date: Mar 2006
Posts: 4,803
Thanks: 9
Thanked 630 Times in 488 Posts
Thanks: 9
Thanked 630 Times in 488 Posts
Blog Entries: 2
Rep Power: 101 Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute
Re: Idoc & ALE

IDoc type




The IDoc type indicates the SAP format that is to be used to transfer the data for a business transaction. An IDoc is a real business process in the form of an IDoc type.
An IDoc type can transfer several message types:
These are the "logical messages" that correspond to different business processes.
An IDoc type is described using the following components:
• a Control record - The format of the control record is identical for all IDoc types.
•one or more Data records - a data record consists of a fixed administration part and a data part (segment).
The number and format of the segments can be different for each IDoc type.
•Status records
the status records describe the processing stages which an IDoc can pass through and have an identical format for each IDoc type.

Example :Purchase order number 4711 was sent to a vendor as IDoc number 0815. IDoc number 0815 is formatted in IDoc type ORDERS01 and has the status records "created" and "sent". The purchase order corresponds to the "logical" message ORDERS.
Spoorthi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20-07-06, 01:08 PM   #4 (permalink)
Super Moderator
 
Spoorthi's Avatar
 
Join Date: Mar 2006
Posts: 4,803
Thanks: 9
Thanked 630 Times in 488 Posts
Thanks: 9
Thanked 630 Times in 488 Posts
Blog Entries: 2
Rep Power: 101 Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute
Re: Idoc & ALE

Application Link Enabling




Application Link Enabling (ALE) refers to the creation and operation of distributed
applications. The basic idea is to guarantee a distributed, but integrated, R/3 installation. This involves business-controlled message exchange with consistent data across loosely linked SAP applications.
Application integration is achieved not via a central database, but via synchronous and asynchronous communication.



In the Sending System:
Transaction Code for IDoc list is : WE05
A list of IDocs grouped by status is displayed:
StatusDescription of Status

03, 12, 38 IDoc successfully transferred

02, 04, 05, 25
26, 29 Processing error

30 Waiting status (still processing...)

>=50 Inbound IDoc (not relevant in this context)

Other Not relevant in this context




In the Receiving System
Transaction Code for IDoc list is : WE05
A list of IDocs grouped by status is displayed:
StatusDescription of Status

53 IDoc successfully updated by application

64 Waiting status (still processing...)

<50 Outbound IDoc (not relevant in this context)
51, 56, 60, 61,

63, 65 Inbound error

Other Not relevant in this context
Spoorthi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20-07-06, 01:09 PM   #5 (permalink)
Super Moderator
 
Spoorthi's Avatar
 
Join Date: Mar 2006
Posts: 4,803
Thanks: 9
Thanked 630 Times in 488 Posts
Thanks: 9
Thanked 630 Times in 488 Posts
Blog Entries: 2
Rep Power: 101 Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute Spoorthi has a reputation beyond repute
Re: Idoc & ALE

APPLICATION MESSAGE TYPES

CUSTOMER - DEBMAS
VENDOR - CREMAS
MATERIAL - MATMAS
SALES ORDER - ORDRSP
PURCHASE ORDER - ORDERS

T-Code to view the Message Types is : WE81.




TRANSACTION CODES FOR ALE




/N SALE : To Define and Assign Logical Systems .
/N SM59 : To Establish RFC Connection.
/N BD64 : To Create Customer Distribution Model.
/N BD82 : To Generate Partner Profiles.
/N WE05: To View IDoc Lists.
/N BD10: To Send the Material Data. /N BD11: To Receive the Material Data.
/N WE19: To Debug the IDoc.
Spoorthi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20-07-06, 04:21 PM   #6 (permalink)
Moderator
 
wizkid's Avatar
 
Join Date: Jun 2006
Location: India
Posts: 960
Thanks: 0
Thanked 27 Times in 25 Posts
Thanks: 0
Thanked 27 Times in 25 Posts
Rep Power: 14 wizkid has a spectacular aura about wizkid has a spectacular aura about wizkid has a spectacular aura about
Re: Idoc & ALE

tats nice info spoorthi..carry onn
__________________
\"WHEN GOING GETS TOUGH, ONLY THE TOUGH GETS GOING\"
wizkid is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +6.5. The time now is 07:48 AM.




Get Short Listed Fast !! Upload Your CV here & Apply New Jobs Everyday.

Search Engine Optimization by vBSEO 3.1.0