IDXSLOAD SAP (IDoc Adapter Administration) Table details

Dictionary Type: Table
Description: IDoc Adapter Administration




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




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

IDXSLOAD is a standard SAP Table which is used to store IDoc Adapter Administration data and is available within R/3 SAP systems depending on the version and release level.

The IDXSLOAD table consists of various fields, each holding specific information or linking keys about IDoc Adapter Administration data available in SAP. These include IDOCTYP (Basic type), CIMTYP (Extension (customer extension of basic IDoc type)), UPDDATE (Date on which control record was last changed), UPDTIME (Time at which control record was last changed).. 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 IDXSLOAD 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
PORTPorts in IDoc Adapter IDX_PORTCHAR10Assigned to domainIDX_PORT
IDOCTYPBasic type EDIPIDOCTPCHAR30Assigned to domainEDI_IDOCTP
CIMTYPExtension (customer extension of basic IDoc type) EDIPCIMTYPCHAR30Assigned to domainEDI_CIMTYP
UPDDATEDate on which control record was last changed EDI_UPDDATDATS8DATUM
UPDTIMETime at which control record was last changed EDI_UPDTIMTIMS6UZEIT
DELETEABLEIDoc Adapter Flag Can Be Deleted IDX_DELETECHAR1CHAR1
ONL_OPTIONEDI processing online or in batch EDI_ONLINECHAR1EDI_ONLINE
UNAMEUser name EDI_UNAMECHAR12UNAME
SYNCHECKIDoc Adapter: Flagging Whether Syntax Check Required IDX_SYNCHKCHAR1IDX_SYNCHK
LOGDESRFC destination EDI_LOGDESCHAR32EDI_LOGDES
SEGNUMNumber of SAP segment EDI_SEGNUMNUMC6EDI_NUMBER
RELEASEDSAP Release for IDoc EDI_DOCRELCHAR4SAPRL
PORTVERSIONVersion of control record EDI_VERSIOCHAR1EDI_VERSIO
DIRECTIONDirection for IDoc EDI_DIRECTCHAR1EDI_DIRECT
SAPRELSAP Release for IDoc EDI_DOCRELCHAR4SAPRL

Key field Non-key field



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

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

SELECT SINGLE *
FROM IDXSLOAD
INTO CORRESPONDING FIELDS OF WA_IDXSLOAD
WHERE...

How to access SAP table IDXSLOAD

Within an ECC or HANA version of SAP you can also view further information about IDXSLOAD 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!