SAP DIMAIOB IO: Header Data for Insurance Object in FS-CD Table data and field list

DIMAIOB is a standard SAP Table which is used to store IO: Header Data for Insurance Object in FS-CD data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DIMAIOB table consists of various fields, each holding specific information or linking keys about IO: Header Data for Insurance Object in FS-CD data available in SAP. These include INSOBJECT (Identification for an Insurance Object), INSOBJECTTYP (External Insurance Object Category), INSOBEZ (IO: Name of an Insurance Object), INSOBJECTEXT (Insurance Object Number in External System)... 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. .

DIMAIOB 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 or numeric)


SAP DIMAIOB 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 DIMAIOB 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
INSOBJECTIdentification for an Insurance Object INSOBJECT_MDCHAR20ALPHAINSOBJECT_MDINSOBJECTSHLP_INSOBJECT_COLL
INSOBJECTTYPExternal Insurance Object Category INSOBJECTTYPC_MDCHAR2TIMA_OTYP_CUSTINSOBJECTTYPC_MDINSOBJECTTYPSHLP_INSOBJECTTYPC_MD
INSOBEZIO: Name of an Insurance Object INSOBEZ_MDCHAR35INSOBEZ_MD
INSOBJECTEXTInsurance Object Number in External System INSOBJECTEXT_MDCHAR20CHAR20
OBJREFReference to Leading Objects OBJREF_MDCHAR20CHAR20
ERNAMIO: Technical User That Creted Insurance Object CRNAME_TECH_MDCHAR12USNAM
ERNAM_BUSINESSBusiness User That Created IO CRNAME_BUS_MDCHAR12USNAM
ERDATDate on Which Record Was Created ERDATDATS8DATUM
AENAMTechnical User That Used IO CHNAME_TECH_MDCHAR12USNAM
AENAM_BUSINESSBusiness User That Changed IO CHNAME_BUS_MDCHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
VERSIONIO: Version Number for Insurance Object VERSION_MDCHAR4VERSION_MD
DUMMYFIELDDummy function in length 1 DUMMYCHAR1DUMMY
CNCREASONCancellation Reason for Insurance Object INSOCNCREASON_VKCHAR4TIMA_CNCREASONINSOCNCREASON_VK

Key field Non-key field



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

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

SELECT SINGLE *
FROM DIMAIOB
INTO CORRESPONDING FIELDS OF WA_DIMAIOB
WHERE...

How to access SAP table DIMAIOB

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

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