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)
);