EDIDC SAP (Control record (IDoc)) Table details

Dictionary Type: Table
Description: Control record (IDoc)




ABAP Code to SELECT data from EDIDC
Related tables to EDIDC
Access table EDIDC




Table field list including key, data, relationships and ABAP select examples

EDIDC is a standard SAP Table which is used to store Control record (IDoc) data and is available within R/3 SAP systems depending on the version and release level.

The EDIDC table consists of various fields, each holding specific information or linking keys about Control record (IDoc) data available in SAP. These include DOCNUM (IDoc number), DOCREL (SAP Release for IDoc), STATUS (Status of IDoc), DOCTYP (IDoc Type).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP EDIDC table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
DOCNUMIDoc number EDI_DOCNUMNUMC16EDI_DOCNUMDCN
DOCRELSAP Release for IDoc EDI_DOCRELCHAR4SAPRL
STATUSStatus of IDoc EDI_STATUSCHAR2TEDS1EDI_STATUS
DOCTYPIDoc Type EDI_DOCTYPCHAR8EDI_DOCTYP
DIRECTDirection for IDoc EDI_DIRECTCHAR1EDI_DIRECT
RCVPORReceiver port (SAP System, EDI subsystem) EDI_RCVPORCHAR10EDI_PORT
RCVPRTPartner Type of Receiver EDI_RCVPRTCHAR2EDI_PARTYP
RCVPRNPartner Number of Receiver EDI_RCVPRNCHAR10Assigned to domainALPHAEDI_PARNUM
RCVSADRecipient address (SADR) EDI_RCVSADCHAR10EDI_SADNR
RCVSMNSADR client (recipient) EDI_RCVSMNCLNT3EDI_SADMDT
RCVSNASADR flag for international recipient address EDI_RCVSNACHAR1EDI_SADNA
RCVSCACommunication type (SADR) of recipient EDI_RCVSCACHAR3EDI_SADCA
RCVSDFSADR default flag for recipient address EDI_RCVSDFCHAR1EDI_SADDF
RCVSLFSequential Number of Recipient Address (SADR) EDI_RCVSLFCHAR3EDI_SADLF
RCVLADLogical address of recipient EDI_RCVLADCHAR70EDI_LOGADR
STDEDI Standard EDI_STDCHAR1EDI_STD
STDVRSVersion of EDI standard EDI_STDVRSCHAR6EDI_STDVRS
STDMESEDI message type EDI_STDMESCHAR6EDI_STDMES
MESCODLogical Message Variant EDI_MESCODCHAR3EDI_MESCOD
MESFCTLogical message function EDI_MESFCTCHAR3EDI_MESFCT
OUTMODOutput Mode EDI_OUTMODCHAR1EDI_OUTMOD
TESTTest Flag EDI_TESTCHAR1EDI_TEST
SNDPORSender port (SAP System, EDI subsystem) EDI_SNDPORCHAR10EDI_PORT
SNDPRTPartner type of sender EDI_SNDPRTCHAR2EDI_PARTYP
SNDPRNPartner Number of Sender EDI_SNDPRNCHAR10Assigned to domainALPHAEDI_PARNUM
SNDSADSender address (SADR) EDI_SNDSADCHAR10EDI_SADNR
SNDSMNSADR client (sender) EDI_SNDSMNCLNT3EDI_SADMDT
SNDSNASADR flag for international sender address EDI_SNDSNACHAR1EDI_SADNA
SNDSCACommunication type (SADR) of sender EDI_SNDSCACHAR3EDI_SADCA
SNDSDFSADR default flag for sender address EDI_SNDSDFCHAR1EDI_SADDF
SNDSLFSequential Number of the Sender Address (SADR) EDI_SNDSLFCHAR3EDI_SADLF
SNDLADLogical address of sender EDI_SNDLADCHAR70EDI_LOGADR
REFINTReference to interchange file IDOCCRFINTCHAR14EDI_REFNUM
REFGRPReference to message group IDOCCRFGRPCHAR14EDI_REFNUM
REFMESReference to message IDOCCRFMESCHAR14EDI_REFNUM
ARCKEYEDI archive key IDOCCARKEYCHAR70EDI_ARCKEY
CREDATIDoc Created On EDI_CCRDATDATS8DATUM
CRETIMIDoc Created at EDI_CCRTIMTIMS6UZEIT
MESTYPMessage Type EDI_MESTYPCHAR30EDMSGEDI_MESTYPMES
IDOCTPBasic type EDI_IDOCTPCHAR30EDBASEDI_IDOCTPIDC
CIMTYPExtension EDI_CIMTYPCHAR30EDCIMEDI_CIMTYPCIM
RCVPFCPartner Function of Receiver EDI_RCVPFCCHAR2EDIPVEDI_PARVW
SNDPFCPartner Function of Sender EDI_SNDPFCCHAR2EDIPVEDI_PARVW
SERIALSerialization field EDI_SERIALCHAR20CHAR20
EXPRSSOverriding in inbound processing EDI_EXPRSSCHAR1EDI_EXPRSS
UPDDATDate on which control record was last changed EDI_UPDDATDATS8DATUM
UPDTIMTime at which control record was last changed EDI_UPDTIMTIMS6UZEIT
MAXSEGNUMNumber of data records ANZEDIDDNUMC6EDI_NUMBER

Key field Non-key field



How do I retrieve data from SAP table EDIDC using ABAP code

The following ABAP code Example will allow you to do a basic selection on EDIDC to SELECT all data from the table
DATA: WA_EDIDC TYPE EDIDC.

SELECT SINGLE *
FROM EDIDC
INTO CORRESPONDING FIELDS OF WA_EDIDC
WHERE...

How to access SAP table EDIDC

Within an ECC or HANA version of SAP you can also view further information about EDIDC and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!