I_RawChmlCmplncInfoSrch

DDL: I_RAWCHMLCMPLNCINFOSRCH Type: view COMPOSITE Package: EHFND_BO_CCI

Chemical Compliance Info RM Launchpad Search

I_RawChmlCmplncInfoSrch is a Composite CDS View that provides data about "Chemical Compliance Info RM Launchpad Search" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 16 fields with key field ChmlCmplncInfoUUID. It has 4 associations to related views. Part of development package EHFND_BO_CCI.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo ChemicalCompliance from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_ChmlCmplncMatlAssgmt _MaterialDataPrimary $projection.ChmlCmplncInfoUUID = _MaterialDataPrimary.ChmlCmplncInfoUUID and _MaterialDataPrimary.MatlAssgmtIsPrimary = 'X' ----------------------------------------------------------------------------------------------------------------------------------------------------------------- -- Associations used for searching. -----------------------------------------------------------------------------------------------------------------------------------------------------------------
[0..*] I_ChmlCmplncMatlAssgmt _MaterialAssignment _MaterialAssignment.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID
[0..*] I_ChmlCmplncPrpsAssgmt _PurposeAssignment _PurposeAssignment.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID ----------------------------------------------------------------------------------------------------------------------------------------------------------------- -- Associations used for filtering hits. This information will shown in facets for additional filtering. -----------------------------------------------------------------------------------------------------------------------------------------------------------------
[0..*] I_ChmlCmplncSuplrMatlAssgmt _SupplierAssignment _SupplierAssignment.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID and _SupplierAssignment.ChmlSuplrMatlIsOutdated <> 'X'

Annotations (9)

NameValueLevelField
EndUserText.label Chemical Compliance Info RM Launchpad Search view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IRAWMATCCISRCH view
ObjectModel.Link https view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncInfo ChmlCmplncInfoUUID Chemical Compliance Information PP
ChmlCmplncInternalName I_ChmlCmplncInfo ChmlCmplncInternalName Internal Name
ChmlCmplncInfoNavgnLink I_ChmlCmplncInfo ChmlCmplncInfoUUID Chemical Compliance Information PP
Specification I_ChmlCmplncInfo Specification Specification
Material _MaterialDataPrimary Material Vehicle Model
ProductName
ProdStewardshipRespUnit ProdStewardshipRespUnit Responsible Unit
MaterialIsTransported MaterialIsTransported Is Transported
MaterialIsProduced MaterialIsProduced Is Produced
MaterialIsSourced MaterialIsSourced Is Purchased
MaterialIsSold MaterialIsSold Is Sold
_MaterialAssignment _MaterialAssignment
_PurposeAssignment _PurposeAssignment
_SupplierAssignment _SupplierAssignment
_RespUnitForProductStewardship _RespUnitForProductStewardship
_Product _MaterialDataPrimary _Product

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_RawChmlCmplncInfoSrch.
-- 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 I_RawChmlCmplncInfoSrch AS
SELECT
  ChemicalCompliance.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  ChemicalCompliance.ChmlCmplncInternalName AS ChmlCmplncInternalName,
  ChemicalCompliance.ChmlCmplncInfoUUID AS ChmlCmplncInfoNavgnLink,
  ChemicalCompliance.Specification AS Specification,
  _MaterialDataPrimary.Material AS Material,
  _MaterialDataPrimary._Product._Text[ 1: Language = $session.system_language ].ProductName AS ProductName,
  ProdStewardshipRespUnit,
  MaterialIsTransported,
  MaterialIsProduced,
  MaterialIsSourced,
  MaterialIsSold,
  _MaterialDataPrimary._Product AS _Product
FROM I_ChmlCmplncInfo AS ChemicalCompliance
LEFT OUTER JOIN I_ChmlCmplncMatlAssgmt AS _MaterialDataPrimary ON ChmlCmplncInfoUUID = _MaterialDataPrimary.ChmlCmplncInfoUUID AND _MaterialDataPrimary.MatlAssgmtIsPrimary = 'X'  -- association [0..1]
LEFT OUTER JOIN I_ChmlCmplncMatlAssgmt AS _MaterialAssignment ON _MaterialAssignment.ChmlCmplncInfoUUID = ChmlCmplncInfoUUID  -- association [0..*]
LEFT OUTER JOIN I_ChmlCmplncPrpsAssgmt AS _PurposeAssignment ON _PurposeAssignment.ChmlCmplncInfoUUID = ChmlCmplncInfoUUID  -- association [0..*]
LEFT OUTER JOIN I_ChmlCmplncSuplrMatlAssgmt AS _SupplierAssignment ON _SupplierAssignment.ChmlCmplncInfoUUID = ChmlCmplncInfoUUID AND _SupplierAssignment.ChmlSuplrMatlIsOutdated <> 'X'  -- association [0..*]
;