P_ChmlSuplrMatlNoReldCmpstn

DDL: P_CHMLSUPLRMATLNORELDCMPSTN Type: view COMPOSITE

P_ChmlSuplrMatlNoReldCmpstn is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 6 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo ChmlCmplncInfo from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChmlSuplrMatl _ChmlSuplrMatl _ChmlSuplrMatl.ChmlSuplrMatlUUID = ChmlSuplrMatl.ChmlSuplrMatlUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSMTLNORELCMPSTN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
ChmlSuplrMatlUUID
ChmlCmplncInfoUUID
BusinessPartnerSupplier _ChmlSuplrMatl BusinessPartnerSupplier Supplier
AuthorizationGroup
ResponsibleUnit _ChmlSuplrMatl ResponsibleUnit Responsible Unit
_BusinessPartner

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_ChmlSuplrMatlNoReldCmpstn.
-- 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_ChmlSuplrMatlNoReldCmpstn AS
SELECT
  _ChmlSuplrMatl.BusinessPartnerSupplier AS BusinessPartnerSupplier,
  _ChmlSuplrMatl.ResponsibleUnit AS ResponsibleUnit
FROM I_ChmlCmplncInfo AS ChmlCmplncInfo
LEFT OUTER JOIN I_ChmlSuplrMatl AS _ChmlSuplrMatl ON _ChmlSuplrMatl.ChmlSuplrMatlUUID = ChmlSuplrMatl.ChmlSuplrMatlUUID  -- association [1..1]
;