SAP IWBENTRY_S KEn: Info Object Browser Defaults Table data and field list

IWBENTRY_S is a standard SAP Table which is used to store KEn: Info Object Browser Defaults data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The IWBENTRY_S table consists of various fields, each holding specific information or linking keys about KEn: Info Object Browser Defaults data available in SAP. These include SUBAREA (Function Code), UNAME (User Name), SRC_LANGU (Language Key), TRG_LANGU (Language Key)... 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. .

IWBENTRY_S table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the IWBENTRY_S table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
AREAArea (Technical Name) IW_AREACHAR10Assigned to domainSDOK_DOCSP
SUBAREAFunction Code SYUCOMMCHAR70SYCHAR70
UNAMEUser Name SYUNAMECHAR12SYCHAR12
SRC_LANGULanguage Key SPRASLANG1Assigned to domainISOLASPRASSPRH_T002
TRG_LANGULanguage Key SPRASLANG1Assigned to domainISOLASPRASSPRH_T002
COUNTRYCountry Key LAND1CHAR3Assigned to domainLAND1LND
INDUSTRYEnhancement IWEXTIDCHAR10Assigned to domainIWEXTID
IND_RELEnhancement Release IWEXTRELCHAR12Assigned to domainIWEXTREL
RELEASERelease of SAP System SYSAPRLCHAR4SYCHAR04
WRK_MODE Processing Mode (Doc/Translation)0
EXT_MODE Enhancement Mode0
CLASSDocument class SDOK_CLASSCHAR10Assigned to domainSDOK_CLASS
OBJIDID for documents and relations SDOK_DOCIDCHAR32SDOK_DOCID

Key field Non-key field



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

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

SELECT SINGLE *
FROM IWBENTRY_S
INTO CORRESPONDING FIELDS OF WA_IWBENTRY_S
WHERE...

How to access SAP table IWBENTRY_S

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

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