ACMDCLSRC

Transparent Table System Table (transport)

ACM: DCL Source (Accesspolicy or Role)

ACMDCLSRC is an SAP database table in S/4HANA. ACM: DCL Source (Accesspolicy or Role). It contains 8 fields. 10 CDS views read from this table.

CDS Views using this table (10)

ViewTypeJoinVDMDescription
ACM_DT_DEPENDENCIES view inner ACM: Designtime-Dependencies of DCL-Objects
ACM_DT_DEPENDENCIES_CELL view inner ACM DT-Dependencies for cell-based access
acm_dt_dependencies_cte view inner ACM DT-Dependencies
ACM_DT_DEPENDENCIES_ROW view inner ACM DT-Dependencies for row-based access
ACM_LANG_VRS_OBJ_ACTIVE_DCLS view_entity from DCLS Relations: ABAP Language Version of Active Objects
ACM_LANG_VRS_OBJ_EDIT_DCLS view_entity from DCLS Relations: ABAP Language Version of Edited Objects
ACMDT_DCL_ADDITIONAL_INFO view from Additional information about each DCL-Source
ACMDT_INHERITANCE_CHAIN view inner ACM-DT: Rules,Roles+DCLs inheriting from each other
ACMTEST_RND_PARSER_CCE_CI view_entity from Custom Configuration Entity Client Indep
RIS_DCLS_TADIR view from DCLS Sources and TADIR

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY dclname acm_dclname Acc. Ctrl. Name
KEY as4local as4local Activation State
as4user as4user Last Changed By
as4date as4date Date
as4time as4time Time
source acm_dclsource DCL Source
parentname acm_dclparent DCL Parent
abap_language_version abap_language_version Language Version

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- ACM: DCL Source (Accesspolicy or Role)
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ACMDCLSRC (
    DCLNAME,                -- Acc. Ctrl. Name [acm_dclname]
    AS4LOCAL,               -- Activation State [as4local]
    AS4USER,                -- Last Changed By [as4user]
    AS4DATE,                -- Date [as4date]
    AS4TIME,                -- Time [as4time]
    SOURCE,                 -- DCL Source [acm_dclsource]
    PARENTNAME,             -- DCL Parent [acm_dclparent]
    ABAP_LANGUAGE_VERSION,  -- Language Version [abap_language_version]
    PRIMARY KEY (DCLNAME, AS4LOCAL)
);