SAP INET Object networking Table data and field list

INET is a standard SAP Table which is used to store Object networking data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The INET table consists of various fields, each holding specific information or linking keys about Object networking data available in SAP. These include KANTE (Number of the link between two technical objects), MLANG (Primary language for object texts), NETID (Network identification), KANTYP (Link category)... 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. .

INET table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = INETX


SAP INET 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 INET 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
MANDTClient MANDTCLNT3T000MANDT
KANTENumber of the link between two technical objects KANTECHAR18ALPHAKANTEINE
MLANGPrimary language for object texts MLANGLANG1T002ISOLASPRAS
NETIDNetwork identification NETIDCHAR8T372INETID
KANTYPLink category KANTYPCHAR1KANTYP
TPVONLink from functional location TPVONCHAR30IFLOTTPLNRTPLNRIFLM
EQVONLink from equipment EQVONCHAR18EQUIALPHAEQUNR
TPNACHLink to functional location TPNACHCHAR30IFLOTTPLNRTPLNRIFLM
EQNACHLink to equipment EQNACHCHAR18EQUIALPHAEQUNR
LFDKNRNumber for parallel links between objects LFDKNRNUMC4LFDKNR
DATVADate from which the link created is valid DATVADATS8DATUM
ZEITVATime from which the link created is valid DZEITVATIMS6UZEIT
DATVBDate to which the link created is valid DATVBDATS8DATUM
ZEITVBTime until which the link created is valid DZEITVBTIMS6UZEIT
STATUSObject number J_OBJNRCHAR22ONR00J_OBJNRONR
TPKANTLink object is a functional location TPKANTCHAR30IFLOTTPLNRTPLNRIFLM
EQKANTLink object is a piece of equipment EQKANTCHAR18EQUIALPHAEQUNR
MEDIUMedium MEDIUCHAR6T372MMEDIU
BEZARPRelationship type possible BEZARPCHAR1BEZARP
BEZARLRelationship type used BEZARLCHAR1BEZARL
ERDATDate on which the object was created ICRDTDATS8DATUM
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
AEDATDate on which the object was last changed IUPDTDATS8DATUM
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
BEGRUTechnical object authorization group IAUTGCHAR4T370BIAUTG
LVORMDeletion Indicator LVORMCHAR1XFELD
NETYPLink category NETYPCHAR1T370NNETYPILT
.INCLU--AP 0
MATNRMaterial Number MATNRCHAR18Assigned to domainMATN1MATNRMATS_MAT1

Key field Non-key field



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

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

SELECT SINGLE *
FROM INET
INTO CORRESPONDING FIELDS OF WA_INET
WHERE...

How to access SAP table INET

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

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