Application Development and Automation 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: 
Read only

what is edi structures

Former Member
0 Likes
852

Hi,

I faces one interview question .

what is edi structures ..

is there any one know what does it mean.

thansk,

Jignesh

4 REPLIES 4
Read only

Former Member
0 Likes
759

On a very high level

These are the structures which are used for IDOC processing.

Read only

ferry_lianto
Active Contributor
0 Likes
759

Hi,

EDI structure is basically an IDoc structure which contains the control record, the data records, and the status records.

- The control record is identical for all IDocs and contains the administration information, for example, sender, recipient and message. Note that the control record also contains the last processing status ( STATUS field).

- The data records contain the segments and administration information for the segments (for example, a parent segment to which it is attached).

- The status records contain all of the previous processing statuses, as well as the corresponding administration information. This information is not sent between systems as part of the IDoc but rather as a separate data packet.

Please check this link for more information.

http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b824843d711d1893e0000e8323c4f/content.htm

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
759

Hi Soni,

Let me share some ideas with you. When ever the data is coming through EDI, that data is hit in the form of IDOCs into SAP. For this IDOCs we are using 3 structures.

EDIDC,EDIDD,EDIDS.

EDIDC for move the control records.

EDIDD for move the data records.

EDIDS is move for the status records.

Declare three internal tables with this strucutures.

Hope this helps you. Reply for queries.

Regrads,

Kumar.

Read only

Former Member
0 Likes
759

Thanks for your reply .