SAP ADD_OMIS Additional Info Objects CO-OM Table data and field list

ADD_OMIS is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Additional Info Objects CO-OM" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_ADD_OMIS TYPE ADD_OMIS.

The ADD_OMIS table consists of various fields, each holding specific information or linking keys about Additional Info Objects CO-OM data available in SAP. These include MAST_COAR (Controlling Area of Master Cost Center), SEND_CCTR (Sender cost center), RECV_CCTR (Receiver Cost Center), DEBT_CCTR (Debited Cost Center)... 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. .

ADD_OMIS structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP ADD_OMIS structure 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 ADD_OMIS 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
MAST_CCTRMaster Cost Center MAST_CCTRCHAR10Assigned to domainALPHAKOSTL
MAST_COARControlling Area of Master Cost Center MAST_COARCHAR4Assigned to domainCACCD
SEND_CCTRSender cost center SEND_CCTRCHAR10Assigned to domainALPHAKOSTL
RECV_CCTRReceiver Cost Center RECV_CCTRCHAR10Assigned to domainALPHAKOSTL
DEBT_CCTRDebited Cost Center DEBT_CCTRCHAR10Assigned to domainALPHAKOSTL
CRET_CCTRCredited Cost Center CRET_CCTRCHAR10Assigned to domainALPHAKOSTL
SEND_ACCTSender Activity Type SEND_ACTTCHAR6Assigned to domainLSTAR
DEBT_ACTTDebited Activity Type DEBT_ACTTCHAR6Assigned to domainLSTAR
CRET_ACCTCredited Activity Type CRET_ACTTCHAR6Assigned to domainLSTAR
SEND_ORDERSender Order SEND_ORDERCHAR12Assigned to domainALPHAAUFNR
RECV_ORDERReceiver Order RECV_ORDERCHAR12Assigned to domainALPHAAUFNR
DEBT_ORDERDebited Order DEBT_ORDERCHAR12Assigned to domainALPHAAUFNR
CRET_ORDERCredited Order CRET_ORDERCHAR12Assigned to domainALPHAAUFNR
SEND_PROCSSender Business Process SEND_PROCSCHAR12Assigned to domainALPHACO_PRZNR
RECV_PROCSReceiver Business Process RECV_PROCSCHAR12Assigned to domainALPHACO_PRZNR

Key field Non-key field



How do I retrieve data from SAP structure ADD_OMIS using ABAP code?

As ADD_OMIS is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on ADD_OMIS as there is no data to select.

How to access SAP table ADD_OMIS

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

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