‎2006 Sep 14 9:42 AM
Hi ,
I want to check the status of IDOC whether within last few hours it was sent or not , for my speific requirement .
I need to know if it was failed or not as well.
is there any way to check the generated IDOC depending on Message type ?
from which table do i get these IDOC informations ?
Reards,
Ashish
‎2006 Sep 14 10:19 AM
Hi Ashish.
Go to the table EDIDD there is a field called sdata
local_seg_struc = sdata.
Then in the local structure u ll get the document number.
Fire a select query on table EDIDS with the document number.If the document number exists check for the status of that record.If status is 53 that means ur idoc is posted to the port.
Hope this solves ur issue.
Regards,
Shrita
‎2006 Sep 14 9:43 AM
Hi Ashish,
Go to we02 or we05 and give your message type and execute. It gives the status of your idoc.
The idocs are stored in tables
EDIDC - control record
EDID4 - data
EDIDS - status record
Regards
Arun
‎2006 Sep 14 10:19 AM
Hi Ashish.
Go to the table EDIDD there is a field called sdata
local_seg_struc = sdata.
Then in the local structure u ll get the document number.
Fire a select query on table EDIDS with the document number.If the document number exists check for the status of that record.If status is 53 that means ur idoc is posted to the port.
Hope this solves ur issue.
Regards,
Shrita
‎2006 Sep 14 10:36 AM
HI shrita ,
EDIDD is a structure ..
Which table to look for , for the IDOC numbers?
Rregards,
Ashish
‎2006 Sep 14 10:59 AM
Hi,
check table EDIDC,EDIDS for idosc number .
also transaction we02 ,we05.
Regards
amole
‎2006 Sep 14 2:49 PM
EDIDC contains the message type, IDoc number, date and time of creation as well as current status. You don't need to access EDIDS.