R_ProdMatlBasedCompositionTP

DDL: R_PRODMATLBASEDCOMPOSITIONTP Type: view_entity TRANSACTIONAL

Product Material Based Composition - TP

R_ProdMatlBasedCompositionTP is a Transactional CDS View that provides data about "Product Material Based Composition - TP" in SAP S/4HANA. It reads from 1 data source (I_ChmlComposition) and exposes 13 fields. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlComposition I_ChmlComposition from

Associations (3)

CardinalityTargetAliasCondition
[0..*] R_ProdMatlBsdBeforeProdnCompTP _BeforeProductionComponent
[0..*] R_ProdMatlBsdAfterProdnCompTP _AfterProductionComponent
[0..*] R_ProdMatlBsdProducedSubstTP _ProducedSubstance

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Product Material Based Composition - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name ProductMaterialBsdComposition view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (13)

KeyFieldSource TableSource FieldDescription
UUIDofcompositionkeyChmlCompositionUUID
ChangedbyuserLastChangedByUser
CompositionTypeChmlCompositionType
ReleaseStatusChmlCompositionStatus
ValidtoDateValidityEndDateTime
_BeforeProductionComponent _BeforeProductionComponent
_AfterProductionComponent _AfterProductionComponent
_ProducedSubstance _ProducedSubstance
_ChmlCmplncInfo _ChmlCmplncInfo
_CompositionStatus _CompositionStatus
_CompositionType _CompositionType
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser

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 R_ProdMatlBasedCompositionTP.
-- 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 R_ProdMatlBasedCompositionTP AS
SELECT *  -- field list not available in parsed metadata
FROM I_ChmlComposition
LEFT OUTER JOIN R_ProdMatlBsdBeforeProdnCompTP AS _BeforeProductionComponent ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_ProdMatlBsdAfterProdnCompTP AS _AfterProductionComponent ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_ProdMatlBsdProducedSubstTP AS _ProducedSubstance ON /* condition not available in parsed metadata */  -- association [0..*]
;