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: 

no of records

Former Member
0 Kudos

hi !

how many records will the IDoc will hold with one IDOC number.

thanks.

partha.

5 REPLIES 5

Former Member
0 Kudos

Hi parthasarthi,

1. Basically it will hold only 1 record.

2. Header data, detail data.

3. Eg

1 PO

10 Line items.

= 1 IDOC

regards,

amit m.

Former Member
0 Kudos

you're question is not so precise!

could you give more details?

data : records

select count(*)

from edid4

into records

where docnum = p_docnum.

regards,

former_member181962
Active Contributor
0 Kudos

One IDoc = one application document.(Holds the info abt the appl document)

application document example, PO, SO, Delivery , Shipment document.

former_member188685
Active Contributor
0 Kudos

hi,

one control record it can have,(edidc table)

many data records, (edid4 table)

many status records (edids table).

if you are talking abount data records then you can check in edid4 table,.

regards

vijay

Former Member
0 Kudos

Hi,

An IDoc have three components: Control data, Data Records and Status data.

Control data contains general information about the IDoc and can exist only once for an IDoc.

Data Records which actually hold the data can have upto n numbers of records.

Status data which holds the status of the IDoc can also have upto n numbers of records.