C_RawChmlCmplncInfoMntr

DDL: C_RAWCHMLCMPLNCINFOMNTR Type: view CONSUMPTION

Raw Material

C_RawChmlCmplncInfoMntr is a Consumption CDS View that provides data about "Raw Material" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 21 fields. It has 9 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo ChemicalCompliance from

Associations (9)

CardinalityTargetAliasCondition
[0..1] I_ProductGroup _ProductGroupVH $projection.MaterialGroup = _ProductGroupVH.MaterialGroup
[0..1] I_ProductHierarchy _ProductHierarchyVH $projection.ProductHierarchy = _ProductHierarchyVH.ProductHierarchy
[0..1] I_Division _DivisionVH $projection.Division = _DivisionVH.Division
[0..1] I_ExtProdGrp _ExternalProdGrpVH $projection.ExternalProductGroup = _ExternalProdGrpVH.ExternalProductGroup ----------------------------------------------------------------------------------------------------------- --Information for Navigation to associated compositions ----------------------------------------------------------------------------------------------------------- --Associated analytical
[0..1] P_AssociatedAnlytlCmpstnRawMat _AssociatedAnlytlCmpstnNavgn ChemicalCompliance.ChmlCmplncInfoUUID = _AssociatedAnlytlCmpstnNavgn.ChmlCmplncInfoUUID -- Counter of Product Assignment
[0..1] P_RawChmlCmplncProdCt _UnpProductAssignmentCounter ChemicalCompliance.ChmlCmplncInfoUUID = _UnpProductAssignmentCounter.CompChmlCmplncInfoUUID -- Status values for raw material
[0..1] P_RawChmlCmplncStatus _Status ChemicalCompliance.ChmlCmplncInfoUUID = _Status.ChmlCmplncInfoUUID -- Supplier Material Value Help
[0..1] I_ChmlCmplncSuplrMatlStsVH _SuplrMatlStsVH $projection.ChmlCmplncSuplrMatlStatus = _SuplrMatlStsVH.ChmlCmplncSuplrMatlStatus
[0..1] I_ChmlCmplncRawMatlCmpstnStsVH _RawMatlCmpstnStsVH $projection.ChmlCmplncRawMatlCmpstnSts = _RawMatlCmpstnStsVH.ChmlCmplncRawMatlCmpstnSts

Annotations (19)

NameValueLevelField
EndUserText.label Raw Material view
AbapCatalog.sqlViewName CCCRINFOMNTR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
UI.headerInfo.typeName Raw Material view
UI.headerInfo.typeNamePlural Raw Materials view
UI.headerInfo.title.label Raw Material view
UI.headerInfo.title.value ChmlCmplncInfoCombinedName view
Search.searchable true view

Fields (21)

KeyFieldSource TableSource FieldDescription
ChmlCmplncInfoUUIDasChmlCmplncInfoUUID
MaterialasMaterial
ProductNameasProductName
ChmlCmplncProdCatztnPhrsUUID I_ChmlCmplncInfo ChmlCmplncProdCatztnPhrsUUID Product Categorization
ChmlCmplncProdCatztnPhrs1Text
ChmlCmplncSuplrMatlStatus
ChmlCmplncRawMatlCmpstnCritlty _Status ChmlCmplncRawMatlCmpstnCritlty
MaterialGroup
MaterialGroupName
ProductHierarchy
Division
ExternalProductGroup
ProdStewardshipRespUnit I_ChmlCmplncInfo ProdStewardshipRespUnit Responsible Unit
Specification I_ChmlCmplncInfo Specification Specification
Association_RawMatlCmpstnStsVH
_SuplrMatlStsVH _SuplrMatlStsVH
_ProductGroupVH _ProductGroupVH
_RespUnitForProductStewardship _RespUnitForProductStewardship
_ProductHierarchyVH _ProductHierarchyVH
_DivisionVH _DivisionVH
_ExternalProdGrpVH _ExternalProdGrpVH

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 C_RawChmlCmplncInfoMntr.
-- 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 C_RawChmlCmplncInfoMntr AS
SELECT
  ChemicalCompliance.ChmlCmplncProdCatztnPhrsUUID AS ChmlCmplncProdCatztnPhrsUUID,
  cast('' as ehfnd_chm_prod_catztnphrs_txt ) AS ChmlCmplncProdCatztnPhrs1Text,
  cast(_Status.ChmlCmplncSuplrMatlStatus as ehfnd_cci_supmat_status) AS ChmlCmplncSuplrMatlStatus,
  _Status.ChmlCmplncRawMatlCmpstnCritlty AS ChmlCmplncRawMatlCmpstnCritlty,
  cast(ChemicalCompliance._MaterialAssignment._Product.ProductGroup as ehfnd_cci_material_group_l) AS MaterialGroup,
  ChemicalCompliance._MaterialAssignment._Product.ProductHierarchy AS ProductHierarchy,
  ChemicalCompliance._MaterialAssignment._Product.Division AS Division,
  cast(ChemicalCompliance._MaterialAssignment._Product.ExternalProductGroup as ehfnd_ext_material_group_l) AS ExternalProductGroup,
  ChemicalCompliance.ProdStewardshipRespUnit AS ProdStewardshipRespUnit,
  ChemicalCompliance.Specification AS Specification
FROM I_ChmlCmplncInfo AS ChemicalCompliance
LEFT OUTER JOIN I_ProductGroup AS _ProductGroupVH ON MaterialGroup = _ProductGroupVH.MaterialGroup  -- association [0..1]
LEFT OUTER JOIN I_ProductHierarchy AS _ProductHierarchyVH ON ProductHierarchy = _ProductHierarchyVH.ProductHierarchy  -- association [0..1]
LEFT OUTER JOIN I_Division AS _DivisionVH ON Division = _DivisionVH.Division  -- association [0..1]
LEFT OUTER JOIN I_ExtProdGrp AS _ExternalProdGrpVH ON ExternalProductGroup = _ExternalProdGrpVH.ExternalProductGroup  -- association [0..1]
LEFT OUTER JOIN P_AssociatedAnlytlCmpstnRawMat AS _AssociatedAnlytlCmpstnNavgn ON ChemicalCompliance.ChmlCmplncInfoUUID = _AssociatedAnlytlCmpstnNavgn.ChmlCmplncInfoUUID  -- association [0..1]
LEFT OUTER JOIN P_RawChmlCmplncProdCt AS _UnpProductAssignmentCounter ON ChemicalCompliance.ChmlCmplncInfoUUID = _UnpProductAssignmentCounter.CompChmlCmplncInfoUUID  -- association [0..1]
LEFT OUTER JOIN P_RawChmlCmplncStatus AS _Status ON ChemicalCompliance.ChmlCmplncInfoUUID = _Status.ChmlCmplncInfoUUID  -- association [0..1]
LEFT OUTER JOIN I_ChmlCmplncSuplrMatlStsVH AS _SuplrMatlStsVH ON ChmlCmplncSuplrMatlStatus = _SuplrMatlStsVH.ChmlCmplncSuplrMatlStatus  -- association [0..1]
LEFT OUTER JOIN I_ChmlCmplncRawMatlCmpstnStsVH AS _RawMatlCmpstnStsVH ON ChmlCmplncRawMatlCmpstnSts = _RawMatlCmpstnStsVH.ChmlCmplncRawMatlCmpstnSts  -- association [0..1]
;