P_ChmlCmpstnStatusCriticality

DDL: P_CHMLCMPSTNSTATUSCRITICALITY SQL: PCCSTSCRITLTY Type: view COMPOSITE Package: EHFND_CNS_CCI

Criticality of Chemical Composition

P_ChmlCmpstnStatusCriticality is a Composite CDS View that provides data about "Criticality of Chemical Composition" in SAP S/4HANA. It reads from 2 data sources (I_ChmlCmplncInfo, I_ChmlComposition) and exposes 9 fields with key field ChmlCmplncInfoUUID. Part of development package EHFND_CNS_CCI.

Data Sources (2)

SourceAliasJoin Type
I_ChmlCmplncInfo ChmlCmplncInfo from
I_ChmlComposition CmpsInProgress inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCCSTSCRITLTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncInfo ChmlCmplncInfoUUID Chemical Compliance Information PP
ChmlCompositionType I_ChmlComposition ChmlCompositionType Legal Area
ChmlCmplncInfoUUIDasChmlCmplncInfoUUID
ChmlCompositionType Legal Area
ChmlCmplncInfoUUIDasChmlCmplncInfoUUID
ChmlCompositionType I_ChmlComposition ChmlCompositionType Legal Area
ChmlCmplncInfoUUIDasChmlCmplncInfoUUID
ChmlCompositionType CmpsReleased ChmlCompositionType Legal Area
ChmlCompositionStsCriticality 3

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_ChmlCmpstnStatusCriticality.
-- 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: PCCSTSCRITLTY

CREATE VIEW P_ChmlCmpstnStatusCriticality AS
SELECT
  ChmlCmplncInfo.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  CmpsInProgress.ChmlCompositionType AS ChmlCompositionType,
  1 as ChmlCompositionStsCriticality AS ChmlCmplncInfoUUIDasChmlCmplncInfoUUID,
  3 AS ChmlCompositionStsCriticality
FROM I_ChmlCmplncInfo AS ChmlCmplncInfo
INNER JOIN I_ChmlComposition AS CmpsInProgress ON /* join condition not captured in parsed metadata */
;