P_ChmlCmplncInfoAssmtCmbnd

DDL: P_CHMLCMPLNCINFOASSMTCMBND Type: view CONSUMPTION

CCI assignments combined

P_ChmlCmplncInfoAssmtCmbnd is a Consumption CDS View that provides data about "CCI assignments combined" in SAP S/4HANA. It reads from 3 data sources (I_ChmlCmplncInfo, I_CmplRqRslt, I_WorkViewAssgmt) and exposes 14 fields with key field ChmlCmplncInfoUUID.

Data Sources (3)

SourceAliasJoin Type
I_ChmlCmplncInfo ChmlCmplncInfo from
I_CmplRqRslt CmplRqRslt inner
I_WorkViewAssgmt WorkViewAssgmt inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PCCIASSMTCM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label CCI assignments combined view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncInfo ChmlCmplncInfoUUID Chemical Compliance Information PP
CmplRqRsltUUID I_CmplRqRslt CmplRqRsltUUID SDS Assessment
CmplRqVersUUID I_CmplRqRslt CmplRqVersUUID NodeID
ComplianceRequirement I_CmplRqRslt ComplianceRequirement Compliance Requirement
CmplRqRsltProcessingStatus I_CmplRqRslt CmplRqRsltProcessingStatus Processing Status
Processor I_CmplRqRslt Processor User Name
ReleasedByUser I_CmplRqRslt ReleasedByUser Released By
CreationDateTime I_CmplRqRslt CreationDateTime Timestamp
CmplRqPattern
CmplRqVersName
WorkViewGroupName
PCPrptySequence
WorkView I_WorkViewAssgmt WorkView Work View ID
WorkViewUUID I_WorkViewAssgmt WorkViewUUID Work View

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_ChmlCmplncInfoAssmtCmbnd.
-- 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 P_ChmlCmplncInfoAssmtCmbnd AS
SELECT
  ChmlCmplncInfo.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  CmplRqRslt.CmplRqRsltUUID AS CmplRqRsltUUID,
  CmplRqRslt.CmplRqVersUUID AS CmplRqVersUUID,
  CmplRqRslt.ComplianceRequirement AS ComplianceRequirement,
  CmplRqRslt.CmplRqRsltProcessingStatus AS CmplRqRsltProcessingStatus,
  CmplRqRslt.Processor AS Processor,
  CmplRqRslt.ReleasedByUser AS ReleasedByUser,
  CmplRqRslt.CreationDateTime AS CreationDateTime,
  CmplRqRslt._CmplRqVers.CmplRqPattern AS CmplRqPattern,
  CmplRqRslt._CmplRqVers.CmplRqVersName AS CmplRqVersName,
  WorkViewAssgmt._WorkViewGroup.WorkViewGroupName AS WorkViewGroupName,
  WorkViewAssgmt._WorkViewGroup.PCPrptySequence AS PCPrptySequence,
  WorkViewAssgmt.WorkView AS WorkView,
  WorkViewAssgmt.WorkViewUUID AS WorkViewUUID
FROM I_ChmlCmplncInfo AS ChmlCmplncInfo
INNER JOIN I_CmplRqRslt AS CmplRqRslt ON /* join condition not captured in parsed metadata */
INNER JOIN I_WorkViewAssgmt AS WorkViewAssgmt ON /* join condition not captured in parsed metadata */
;