I_ChmlCmplncInfoSrch

DDL: I_CHMLCMPLNCINFOSRCH Type: view COMPOSITE

Chemical Compliance Info UP Launchpad Search

I_ChmlCmplncInfoSrch is a Composite CDS View that provides data about "Chemical Compliance Info UP Launchpad Search" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 17 fields with key field ChmlCmplncInfoUUID. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo ChemicalCompliance from

Associations (5)

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_ChmlCmplncApplAssgmt _Applications _Applications.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID
[0..*] I_ChmlCmplncMktReq _Countries _Countries.ChmlCmplncInfoUUID = $projection.ChmlCmplncInfoUUID

Annotations (9)

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

Fields (17)

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
_Applications _Applications
_Countries _Countries
_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_ChmlCmplncInfoSrch.
-- 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_ChmlCmplncInfoSrch 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_ChmlCmplncApplAssgmt AS _Applications ON _Applications.ChmlCmplncInfoUUID = ChmlCmplncInfoUUID  -- association [0..*]
LEFT OUTER JOIN I_ChmlCmplncMktReq AS _Countries ON _Countries.ChmlCmplncInfoUUID = ChmlCmplncInfoUUID  -- association [0..*]
;