ALLOC_TDD_SIMUL

Transparent Table Application Table

Allocation TDD Simulation

ALLOC_TDD_SIMUL is an SAP database table in S/4HANA. Allocation TDD Simulation. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AllocTopDwnDistrSimulation view from BASIC TDD Simulation

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY uuid FCO_SIMUL_UUID Simulation UUID
KEY fisperiod FCO_SIMUL_PERIOD Fiscal Year/Period
KEY data_type FCO_SIMUL_DATA_TYPE Data Type
cnt FCO_SIMUL_CNT Number of Records
createdate DATE Date

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.

-- Allocation TDD Simulation
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ALLOC_TDD_SIMUL (
    MANDT,       -- Client [MANDT]
    UUID,        -- Simulation UUID [FCO_SIMUL_UUID]
    FISPERIOD,   -- Fiscal Year/Period [FCO_SIMUL_PERIOD]
    DATA_TYPE,   -- Data Type [FCO_SIMUL_DATA_TYPE]
    CNT,         -- Number of Records [FCO_SIMUL_CNT]
    CREATEDATE,  -- Date [DATE]
    PRIMARY KEY (MANDT, UUID, FISPERIOD, DATA_TYPE)
);