I_NewestDngrsGdsClfnForCmRqVs

DDL: I_NEWESTDNGRSGDSCLFNFORCMRQVS Type: view_entity COMPOSITE

Newest DG CRR for CRV

I_NewestDngrsGdsClfnForCmRqVs is a Composite CDS View that provides data about "Newest DG CRR for CRV" in SAP S/4HANA. It reads from 2 data sources (I_CmplRqVers, I_CmplRqRslt) and exposes 5 fields with key fields CmplRqVersUUID, ChmlCmplncInfoUUID, CmplRqRsltReferencedObjectUUID.

Data Sources (2)

SourceAliasJoin Type
I_CmplRqVers ComplianceRequirementVersion inner
I_CmplRqRslt CRR from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #B view
EndUserText.label Newest DG CRR for CRV view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CmplRqVersUUID I_CmplRqRslt CmplRqVersUUID NodeID
KEY ChmlCmplncInfoUUID I_CmplRqRslt ChmlCmplncInfoUUID Chemical Compliance Information PP
KEY CmplRqRsltReferencedObjectUUID I_CmplRqRslt CmplRqRsltReferencedObjectUUID UUID of Ref. Object
ComplianceRequirement I_CmplRqRslt ComplianceRequirement Compliance Requirement
CmplRqRsltProcessingStatus

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_NewestDngrsGdsClfnForCmRqVs.
-- 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_NewestDngrsGdsClfnForCmRqVs AS
SELECT
  CRR.CmplRqVersUUID AS CmplRqVersUUID,
  CRR.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  CRR.CmplRqRsltReferencedObjectUUID AS CmplRqRsltReferencedObjectUUID,
  CRR.ComplianceRequirement AS ComplianceRequirement,
  min( CRR.CmplRqRsltProcessingStatus ) AS CmplRqRsltProcessingStatus
FROM I_CmplRqRslt AS CRR
INNER JOIN I_CmplRqVers AS ComplianceRequirementVersion ON /* join condition not captured in parsed metadata */
;