ABCALTCNTLGRP

Transparent Table Application Table

Alternative Control Group in Alternative Based Confirmation

ABCALTCNTLGRP is an SAP database table in S/4HANA. Alternative Control Group in Alternative Based Confirmation. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AltvBsdConfAltvCtrlGroup view from BASIC Alternative Control Group

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY altvbsdconfaltvctrlgroupuuid atp_abc_altv_ctrl_uuid Alternative Control UUID
atprelevantdocumentclass atp_relevant_document_class Document Class
creationdatetime atp_abc_creation_timestamp Created On
createdbyuser vdm_createdbyuserid Created By
lastchangedatetime atp_abc_lastchange_timestamp Changed On
lastchangedbyuser vdm_lastchangedbyuserid Changed By
objvaldetnmigrationisfinished boole_d TRUE

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.

-- Alternative Control Group in Alternative Based Confirmation
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ABCALTCNTLGRP (
    MANDT,                          -- Client [mandt]
    ALTVBSDCONFALTVCTRLGROUPUUID,   -- Alternative Control UUID [atp_abc_altv_ctrl_uuid]
    ATPRELEVANTDOCUMENTCLASS,       -- Document Class [atp_relevant_document_class]
    CREATIONDATETIME,               -- Created On [atp_abc_creation_timestamp]
    CREATEDBYUSER,                  -- Created By [vdm_createdbyuserid]
    LASTCHANGEDATETIME,             -- Changed On [atp_abc_lastchange_timestamp]
    LASTCHANGEDBYUSER,              -- Changed By [vdm_lastchangedbyuserid]
    OBJVALDETNMIGRATIONISFINISHED,  -- TRUE [boole_d]
    PRIMARY KEY (MANDT, ALTVBSDCONFALTVCTRLGROUPUUID)
);