P_UnivAllocCycleSDM

DDL: P_UNIVALLOCCYCLESDM Type: view_entity COMPOSITE

P_UnivAllocCycleSDM is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_UniversalAllocationCycle) and exposes 11 fields with key fields AllocationType, AllocationCycle, AllocationCycleStartDate.

Data Sources (1)

SourceAliasJoin Type
I_UniversalAllocationCycle _Cycle from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY AllocationType AllocationType Table
KEY AllocationCycle AllocationCycle Cycle
KEY AllocationCycleStartDate AllocationCycleStartDate Valid From
AllocationActualPlanVariant AllocationActualPlanVariant Actual/Plan
AllocationPostingType AllocationPostingType Posting Type
AllocationCycleName AllocationCycleName Allocation Cycle
Ledger Ledger Ledger
CompanyCode CompanyCode Receiver Company Code
AllocationCycleCategory AllocationCycleCategory Plan Category
ControllingArea ControllingArea Controlling Area
OperatingConcern OperatingConcern Operating concern

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 P_UnivAllocCycleSDM.
-- 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.

CREATE VIEW P_UnivAllocCycleSDM AS
SELECT
  AllocationType,
  AllocationCycle,
  AllocationCycleStartDate,
  AllocationActualPlanVariant,
  AllocationPostingType,
  AllocationCycleName,
  Ledger,
  CompanyCode,
  AllocationCycleCategory,
  ControllingArea,
  OperatingConcern
FROM I_UniversalAllocationCycle AS _Cycle
;