‎2008 Jul 24 8:20 AM
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?
‎2008 Jul 24 8:44 AM
Table EDID4. -- where sdata(2) = plvar.
sdata+2(2) = objtyp
sdata+4 = objid.
segnam = e1plogi
‎2008 Jul 24 8:24 AM
‎2008 Jul 24 8:28 AM
‎2008 Jul 24 8:44 AM
Table EDID4. -- where sdata(2) = plvar.
sdata+2(2) = objtyp
sdata+4 = objid.
segnam = e1plogi
‎2008 Jul 24 9:25 AM
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...
‎2008 Jul 24 9:32 AM
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.
‎2008 Jul 24 9:44 AM
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
‎2008 Jul 24 9:56 AM
Hi Friend...
i got hte answer... thanks for ur support.... i hv given u full points...
‎2008 Jul 24 9:54 AM
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