SAP BUTECHORG Table of original Transactions (Technical) Table data and field list

BUTECHORG is a standard SAP Table which is used to store Table of original Transactions (Technical) data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BUTECHORG table consists of various fields, each holding specific information or linking keys about Table of original Transactions (Technical) data available in SAP. These include TECHORG (Original Application), FLG_CHECK_AVC (Flag to enable messages when calling AVC), FLG_ADD_LINES (Activation of Additional Lines), FLG_ROLLUP (Enable Budget Documents with Rollup)... 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. .

BUTECHORG table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced

Text table = BUTECHORGT


SAP BUTECHORG 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 BUTECHORG 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
TECHORGOriginal Application BUKU_TECHORGCHAR10BUKU_TECHORG
FLG_CHECK_AVCFlag to enable messages when calling AVC FLG_CHECK_AVCCHAR1XFELD
FLG_ADD_LINESActivation of Additional Lines BUKU_FLG_ADD_LINECHAR1XFELD
FLG_ROLLUPEnable Budget Documents with Rollup BUKU_FLG_ROLLUPCHAR1XFELD
FLG_PREPOSTEnable Preposted Documents BUKU_FLG_PREPOSTCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM BUTECHORG
INTO CORRESPONDING FIELDS OF WA_BUTECHORG
WHERE...

How to access SAP table BUTECHORG

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

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