ACMASPECTCOLUMN

Transparent Table System Table (transport)

ACM: Aspect Columns

ACMASPECTCOLUMN is an SAP database table in S/4HANA. ACM: Aspect Columns. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
SACMRT_ASPECT_GENERIC view_entity inner ACM RT: Generic Aspects

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY id acm_aspectcolumn_id Aspect Column ID
aspect_id acm_aspect_id Aspect ID
aspcol_type acm_aspcol_type Column Type
pos acm_sequence_number Position
ctecolname_id acm_ctecolname_id Column Name ID
fullauth_operator acm_aspcol_fullauth_operator Full-auth. Operator
fullauth_value acm_aspcol_fullauth_value Full-auth. Operator
alias_name acm_alias_name Alias Name

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: Aspect Columns
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ACMASPECTCOLUMN (
    ID,                 -- Aspect Column ID [acm_aspectcolumn_id]
    ASPECT_ID,          -- Aspect ID [acm_aspect_id]
    ASPCOL_TYPE,        -- Column Type [acm_aspcol_type]
    POS,                -- Position [acm_sequence_number]
    CTECOLNAME_ID,      -- Column Name ID [acm_ctecolname_id]
    FULLAUTH_OPERATOR,  -- Full-auth. Operator [acm_aspcol_fullauth_operator]
    FULLAUTH_VALUE,     -- Full-auth. Operator [acm_aspcol_fullauth_value]
    ALIAS_NAME,         -- Alias Name [acm_alias_name]
    PRIMARY KEY (ID)
);