SAP TACECOMP Accrual Engine Application Component Table data and field list

TACECOMP is a standard SAP Table which is used to store Accrual Engine Application Component data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TACECOMP table consists of various fields, each holding specific information or linking keys about Accrual Engine Application Component data available in SAP. These include COMP (Accrual Engine Application Component), FUNCTYPE (Function Type), AWTYP (Reference Transaction), SSTRUC_CO (Accrual Engine: Account Determination Structure Name)... 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. .

TACECOMP table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = TACECOMPT


SAP TACECOMP 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 TACECOMP 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 MANDTCLNT3Assigned to domainMANDT
COMPAccrual Engine Application Component ACE_COMPCHAR4ACE_COMPACE_COMP
FUNCTYPEFunction Type ACE_FUNCTYPECHAR1ACE_FUNCTYPE
AWTYPReference Transaction AWTYPCHAR5Assigned to domainAWTYP
SSTRUC_COAccrual Engine: Account Determination Structure Name ACE_ACDT_SSTRUC_NAMECHAR30Assigned to domainAS4TAB
REFKEY_TAB_NAMETable Name for Component-Specific External References ACE_REFKEY_COMP_TABNAMECHAR30TABNAME
REF_KEY_FIELDSStructure with RefKey Fields ACE_REF_KEY_FIELD_STRUCCHAR30Assigned to domainAS4TAB
REF_SUBKEY_FLDSStructure with RefSubKey Fields ACE_REF_SUBKEY_FIELD_STRUCCHAR30Assigned to domainAS4TAB
PARAM_FIELDSStructure with Fields (Entries) in Table ACEDSOP ACE_PARAMETER_FIELD_STRUCCHAR30Assigned to domainAS4TAB
ALLOWED_ASSGMTSStructure with Permitted Account Assignment Fields ACE_ALLOWED_ASSIGNMENTSCHAR30CHAR30
TREE_STRUCTUREStructure of Tree in Manual Data Maintenance Transaction ACE_TREE_STRUCTURECHAR30CHAR30
RESULT_LIST_PPPeriodic Posting: Structure of the Results List ACE_STRUC_PERPOST_RESULT_LISTCHAR30TABNAME
RESULT_LIST_APPreparation for Archiving: Structure of the Result List ACE_STRUC_ARCHPREP_RESULT_LISTCHAR30TABNAME
BW_EXTRACT_CALCStructure for BW Extraction of Calculated Accrual Values ACE_BW_EXTRAKT_STRUC_CALCCHAR30Assigned to domainAS4TAB
BW_EXTRACT_POSTStructure for BW Extraction of Posted Accrual Values ACE_BW_EXTRAKT_STRUC_POSTCHAR30Assigned to domainAS4TAB
TCODEPFIXPrefix of Transactions for a Component ACE_TRANSACT_PREFIXCHAR4CHAR4
NRRANGENRNumber Range Interval Number ACE_NRNRCHAR2CHAR2
MANUAL_CHANGEIndicator: Manual Change/Creation of Data Allowed ACE_MANUAL_DATA_MAINTAINANCECHAR1FLAG
ENVIRONMENTEnvironment in Which Accrual Engine is Used: ERP or BusAcc. ACE_ENVIRONMENTCHAR3ACE_ENVIRONMENT
REF_KEY_DELIndicator: Automatically Delete Data from Comp.-Spec. Table ACE_REFKEY_COMP_TAB_DELCHAR1FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM TACECOMP
INTO CORRESPONDING FIELDS OF WA_TACECOMP
WHERE...

How to access SAP table TACECOMP

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

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