SAP TCORU Parameters for Order Confirmation Table data and field list

TCORU is a standard SAP Table which is used to store Parameters for Order Confirmation data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TCORU table consists of various fields, each holding specific information or linking keys about Parameters for Order Confirmation data available in SAP. These include WERKS (Plant), AUART (Order Type), UNTLI (Check underdelivery tolerance in order), UEBLI (Check overdelivery tolerance in order)... 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. .

TCORU table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP TCORU 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 TCORU 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
WERKSPlant WERKS_DCHAR4T001WWERKSWRKH_T001W_C
AUARTOrder Type AUFARTCHAR4T003OAUFARTAAT
UNTLICheck underdelivery tolerance in order UNTLICHAR1CO_UNTLI
UEBLICheck overdelivery tolerance in order CO_UEBLICHAR1CO_UEBLI
AUSORPost open reservations AUSORCHAR1XFELD
AUERUPartial/Final Confirmation AUERU_VSCHAR1AUERU_VS
ZEVGZDefault value time unit via automatic optimization RU_ZEVGZCHAR1XFELD
ZESTDTime unit for the default value: Hours RU_ZESTDCHAR1XFELD
ZEMINTime unit for the default value: Minutes RU_ZEMINCHAR1XFELD
AZSMGDisplay quantities to be confirmed AZSMGCHAR1XFELD
AZSLEDisplay activities to be confirmed AZSLECHAR1XFELD
AZSZTDisplay dates to be confirmed AZSZTCHAR1XFELD
AZSZUDisplay personnel data to be confirmed AZSZUCHAR1XFELD
VSSMGPropose Quantities VSSMGCHAR1XFELD
VSSLEPropose activities VSSLECHAR1XFELD
VSSZTPropose dates VSSZTCHAR1XFELD
VSSZUPropose personnel data VSSZUCHAR1XFELD
AZIMGDisplay confirmed quantities AZIMGCHAR1XFELD
AZILEDisplay confirmed activities AZILECHAR1XFELD
AZIZTDisplay confirmed dates AZIZTCHAR1XFELD
ISERFOnly create actual values ISERFCHAR1XFELD
SCHAEEnter forecast values CO_SCHAEKZCHAR1XFELD
MRFLGCheck of operation sequence in order CO_MRFLGCHAR1CO_MRFLG
TRMZKAllow actual dates in the future TRMZUKUNFTCHAR1X
ABARBDeviation (in %) permitted for work in confirmation DELTAARBNUMC3NUM3
ABDAUPermitted deviation (in %) for duration in confirmation DELTADAUNUMC3NUM3
CPROTDisplay Log for Actual Cost Calculation CO_CPROTCHAR1XFELD
GPROTProvide error handling for goods movements CO_GPROTCHAR1XFELD
ABARB_AKTIndicator: Take allowed work deviation into consideration ABARB_AKTCHAR1X
ABDAU_AKTIndicator: Take allowed duration deviation into account ABDAU_AKTCHAR1X
ACOMPAll components on goods movements overview CO_ACOMPCHAR1XFELD
ABARB_WFLWorkflow when the work deviation is exceeded ABARB_WFLCHAR1X
ABDAU_WFLWorkflow when duration deviation is exceeded ABDAU_WFLCHAR1X
GMOVJIndicator: Goods movements via background job GMOVJCHAR1GMOVJ
COSTJOnly confirm open orders in collective order CO_OFORDCHAR1XFELD
CAPAJNo data transfer from PP to HR CO_NOHRPCHAR1XFELD
PRZSTControl confirmation process CO_PRZSTCHAR4Assigned to domainCO_PRZST
MSDRKInd: Set milestone dates automatically MSDRKCHAR1XFELD
ERUVGSelect operations with status 'confirmed' CO_ERUVGCHAR1XFELD
RUFHGSelect confirmable operations CO_RUFHGCHAR1XFELD
QRMDEInfluence of QM Results Recording on Confirmation QRMDECHAR1QRMDE
CALC_PERFIndicator: Calculate performance CALC_PERFCHAR1XFELD
NODATDo not update actual date in the operation NODATCHAR1XFELD
MLSLOQuantity Calculation for Milestone/Progress Confirmation MLSLOCHAR1FLAG
CCANCTermination of Confirmation if Incorrect Actual Costs CO_CCANCCHAR1XFELD
GCANCTermination of Confirmation if Incorrect Goods Movements CO_GCANCCHAR1XFELD
CANCL_INDIFlag for Rough Reversal CANCL_INDICHAR1XFELD
CANCL_CNTConf. Counter, From Which Rough Reversals Are Performed CANCL_CNTNUMC8CIM_COUNT
CANCL_FCASFlag for Simplified Forecast During Reversal CANCL_FCASCHAR1XFELD
MLST_EXEFlag for Executing Milestone Function (Only PS) MLST_EXECHAR1XFELD
MLTPSGoods Receipt of Co-Products in Confirmation MLTPSCHAR1KREUZ
.INCLU--AP 0
QMARTNotification Type QMARTCHAR2TQ80QMARTQMR
SHIFT_PROPShift to be Proposed COCF_SHIFT_PROPCHAR1COCF_SHIFT_PROP
CUST_OPR_CNFOperation Confirmation: Take Account of Cust.-Spec. Fields COCF_CU_OPR_USE_CUST_FLDSCHAR1COCF_CUST_FIELDS
CUST_HDR_CNFHeader Confirmation: Use Customer-Specific Fields COCF_CU_HDR_USE_CUST_FLDSCHAR1COCF_CUST_FIELDS
SUBQTY_HDR_CNFHeader Confirmation: Use Subdivided Quantities COCF_CU_HDR_USE_SUBQTYCHAR1
SHIFT_HDR_CNFHeader Confirmation: Use Shift COCF_CU_HDR_USE_SHIFTCHAR1

Key field Non-key field



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

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

SELECT SINGLE *
FROM TCORU
INTO CORRESPONDING FIELDS OF WA_TCORU
WHERE...

How to access SAP table TCORU

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

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