C_AllocTopDwnDistrSimulation

DDL: C_ALLOCTOPDWNDISTRSIMULATION SQL: CALOTDDSIMUL Type: view CONSUMPTION

TDD Simulation

C_AllocTopDwnDistrSimulation is a Consumption CDS View that provides data about "TDD Simulation" in SAP S/4HANA. It reads from 1 data source (I_AllocTopDwnDistrSimulation) and exposes 5 fields with key fields AllocationSimulationUUID, FiscalYearPeriod, AllocationSenderReferenceValue.

Data Sources (1)

SourceAliasJoin Type
I_AllocTopDwnDistrSimulation I_AllocTopDwnDistrSimulation from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CALOTDDSIMUL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view
EndUserText.label TDD Simulation view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AllocationSimulationUUID AllocationSimulationUUID Waste Partner UUID
KEY FiscalYearPeriod FiscalYearPeriod Period/Year
KEY AllocationSenderReferenceValue AllocationSenderReferenceValue Type
NumberOfItems NumberOfItems Number of Records
AllocSndrRefValTxt

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_AllocTopDwnDistrSimulation.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CALOTDDSIMUL

CREATE VIEW C_AllocTopDwnDistrSimulation AS
SELECT
  AllocationSimulationUUID,
  FiscalYearPeriod,
  AllocationSenderReferenceValue,
  NumberOfItems,
  _AllocSndrRefValTxt[1:Language = $session.system_language].AllocSndrRefValTxt AS AllocSndrRefValTxt
FROM I_AllocTopDwnDistrSimulation
;