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

Table name to get IDOC Data Record

Former Member
0 Likes
21,858

Hi Friend,

Can anyone tel me the name of the table wr all my Data Record of a particular segment in an IDOC gets stored...

I am having the value for a field in a segment, now i need to find the IDOC no. Is tr any way or table available other than using WE02 Transaction?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
6,106

Table EDID4. -- where sdata(2) = plvar.

sdata+2(2) = objtyp

sdata+4 = objid.

segnam = e1plogi

8 REPLIES 8
Read only

Former Member
0 Likes
6,106

HI

Data Records are stored in DDIC structure .

Regards

Hitesh

Read only

0 Likes
6,106

EDID4

Contains the IDoc data records

Raghav

Read only

Former Member
0 Likes
6,107

Table EDID4. -- where sdata(2) = plvar.

sdata+2(2) = objtyp

sdata+4 = objid.

segnam = e1plogi

Read only

0 Likes
6,106

Hi Friend,

can u plz explain me in detail, the value i need to pass for SDATA?

Wt value do i need to pass for

plvar

objtyp

objid...

thanks in advance...

Read only

0 Likes
6,106

hi go to the table EDIDD and give the segment name and segment numger...

plvar is always 01

objtyp may be O or S or P or C

objid means PERNR

do like this..

loop at edidd.

case segment .

when 'segment name'.

segment-sdata+0(2) = '01' for plvar

segment-sdata+2(2) = 'O' for objtyp

segment-sdata+4(8) = '00001000' for objid

endloop.

Read only

0 Likes
6,106

My apologies .....

This is regarding HR (logical message HRMD_A) not for any other module.the criteria that i have sent is for HR module where the plvar is planversion, objty is the Object type like org unit,position,pernr etc, object id will be corresponding value. you can search with your segname and seg number.

Cheers,

jacks

Read only

0 Likes
6,106

Hi Friend...

i got hte answer... thanks for ur support.... i hv given u full points...

Read only

Former Member
0 Likes
6,106

Hi,

if you want to search for business content within IDocs you can use transaction WE09.

[IDoc Search|http://help.sap.com/erp2005_ehp_03/helpdata/EN/d5/edf15ddcdc11d1890c0000e8216438/frameset.htm]

This might be easier as to deal with SDATA.

Regards Rudi