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

convert data from IDOC format to internal table format

Former Member
0 Likes
832

We have the data in IDOC format how can we convert them into (records) internal table format.

Thanks in advance.

Sounder

1 REPLY 1
Read only

gajendra_bhakuni
Product and Topic Expert
Product and Topic Expert
0 Likes
556

Hi Sounder,

IDoc is defined on two levels - technical level and application level.

1) Technical view:

Control record (table of structure: EDIDC)

Data record (table of structure: EDIDD)

Status record (table of structure: EDIDS)

2) Application view

Segment

Attributes of the segment.

If you look at any of the inbound IDoc processing function modules, say: IDOC_INPUT_ORDERS, you will see the interface containing the parameters: IDOC_CONTROL (table containing control records based on structure EDIDC) and IDOC_DATA (table containing data records based on structure EDIDD). This conversion is done by the ALE interface.

Hope this helps.

Regards,

Gajendra.