I_ChmlCmplncAnlyts2

DDL: I_CHMLCMPLNCANLYTS2 SQL: ICCMPLCNINFOA2 Type: view COMPOSITE

Dimension Product Assignment

I_ChmlCmplncAnlyts2 is a Composite CDS View that provides data about "Dimension Product Assignment" in SAP S/4HANA. It reads from 3 data sources (I_ChmlComposition, I_ChmlCmplncInfo, Composition) and exposes 7 fields.

Data Sources (3)

SourceAliasJoin Type
I_ChmlComposition _ChemicalComposition inner
I_ChmlCmplncInfo ChmlCmplncInfo from
Composition Composition inner

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCMPLCNINFOA2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.representativeKey Material view
EndUserText.label Dimension Product Assignment view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
VDM.viewType #COMPOSITE view
Metadata.allowExtensions true view

Fields (7)

KeyFieldSource TableSource FieldDescription
ChmlCompositionType
SubstanceUUID
MatlAssgmtIsPrimary
Country
ChmlCmplncProdnAllwd
MaterialIsDisposed MaterialIsDisposed Is Disposed
MaterialIsEmissionRelevant MaterialIsEmissionRelevant Emission Relevant

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 I_ChmlCmplncAnlyts2.
-- 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: ICCMPLCNINFOA2

CREATE VIEW I_ChmlCmplncAnlyts2 AS
SELECT
  MaterialIsDisposed,
  MaterialIsEmissionRelevant
FROM I_ChmlCmplncInfo AS ChmlCmplncInfo
INNER JOIN Composition ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChmlComposition AS _ChemicalComposition ON /* join condition not captured in parsed metadata */
;