SAP CFX_HIST_AUTH Saves all Changes to Authorization Objects Table data and field list

CFX_HIST_AUTH is a standard SAP Table which is used to store Saves all Changes to Authorization Objects data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CFX_HIST_AUTH table consists of various fields, each holding specific information or linking keys about Saves all Changes to Authorization Objects data available in SAP. These include ACTION_ID (GUID in 'RAW' format), OBJECT_ID (Object ID), ACTIVITY (Activity for Authorization Check), ACTION (Identifier of Ind. History Activity (for Example, Create))... 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. .

CFX_HIST_AUTH 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: Cannot Be Enhanced


SAP CFX_HIST_AUTH 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 CFX_HIST_AUTH 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
ACTION_IDGUID in 'RAW' format GUID_16RAW16SYSUUID
OBJECT_IDObject ID ACO_OBJECT_IDRAW16SYSUUID
ACTIVITYActivity for Authorization Check ACO_ACTVTCHAR10ACO_ACTVT
ACTIONIdentifier of Ind. History Activity (for Example, Create) CFX_T_HISTORY_ACTIONINT410
USER_IDUser ID CFX_USERIDCHAR12USNAM
ACTION_DATEUTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun) TIMESTAMPLDEC21(7) TZNTSTMPL
REF_USERUser ID CFX_USERIDCHAR12USNAM
REF_USERGRPGUID in 'RAW' format GUID_16RAW16SYSUUID
REF_ROLERole Name AGR_NAMECHAR30Assigned to domainAGR_NAMEAGR_NAME
COL_IDGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
ACO_OBJ_TYPEObject Category ACO_OBJECT_TYPECHAR15Assigned to domainACO_OBJECT_TYPEACO_OBJECT_TYPE

Key field Non-key field



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

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

SELECT SINGLE *
FROM CFX_HIST_AUTH
INTO CORRESPONDING FIELDS OF WA_CFX_HIST_AUTH
WHERE...

How to access SAP table CFX_HIST_AUTH

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

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