P_SDMProdAllocRAIMigration

DDL: P_SDMPRODALLOCRAIMIGRATION Type: view_entity COMPOSITE

P_SDMProdAllocRAIMigration is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (pallocobjd, pasqncd) and exposes 5 fields with key field uuid.

Data Sources (2)

SourceAliasJoin Type
pallocobjd pallocobjd from
pasqncd pasqncd union_all

Annotations (7)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY uuid productallocationobjectuuid Product Allocation Object UUID
id productallocationobject Allocation Sequence
TableName
id productallocationsequence Allocation Sequence
TableName

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_SDMProdAllocRAIMigration.
-- 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_SDMProdAllocRAIMigration AS
SELECT
  productallocationobjectuuid AS uuid,
  productallocationobject AS id,
  cast( 'PALLOCOBJD' as char30 ) AS TableName
FROM pallocobjd
-- UNION ALL with additional select branch(es): pasqncd
;