I_ChmlCmplncReqRelevantStep

DDL: I_CHMLCMPLNCREQRELEVANTSTEP Type: view_entity COMPOSITE

Relevant Step for a Compliance Request

I_ChmlCmplncReqRelevantStep is a Composite CDS View that provides data about "Relevant Step for a Compliance Request" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncReq) and exposes 12 fields with key fields ChmlCmplncRequestUUID, CmplncReqDialogSectionID.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncReq ComplianceRequest from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Relevant Step for a Compliance Request view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncRequestUUID I_ChmlCmplncReq ChmlCmplncRequestUUID Chemical Compliance Request
KEY CmplncReqDialogSectionID ConfigurationStep CmplncReqDialogSectionID Dialog Section
CmplncReqBusinessProcess ConfigurationStep CmplncReqBusinessProcess Business Process
CmplncReqDialogSectionMode ConfigurationStep CmplncReqDialogSectionMode Dialog Mode
CmplncReqReason ConfigurationStep CmplncReqReason Reason for Request
CmplncReqReasonDetailAlias ConfigurationStep CmplncReqReasonDetailAlias Alias Name
CmplncReqSolutionArea ConfigurationStep CmplncReqSolutionArea Component
CmplncReqStepSequenceNumber ConfigurationStep CmplncReqStepSequenceNumber
CmplncRequestStepIsCompleted StepInstance CmplncRequestStepIsCompleted
ChmlCmplncReqStepProcessorUser StepInstance ChmlCmplncReqStepProcessorUser
ChmlCmplncInfoUUID I_ChmlCmplncReq ChmlCmplncInfoUUID Chemical Compliance Information PP
_ChmlCmplncInfo I_ChmlCmplncReq _ChmlCmplncInfo

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_ChmlCmplncReqRelevantStep.
-- 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_ChmlCmplncReqRelevantStep AS
SELECT
  ComplianceRequest.ChmlCmplncRequestUUID AS ChmlCmplncRequestUUID,
  ConfigurationStep.CmplncReqDialogSectionID AS CmplncReqDialogSectionID,
  ConfigurationStep.CmplncReqBusinessProcess AS CmplncReqBusinessProcess,
  ConfigurationStep.CmplncReqDialogSectionMode AS CmplncReqDialogSectionMode,
  ConfigurationStep.CmplncReqReason AS CmplncReqReason,
  ConfigurationStep.CmplncReqReasonDetailAlias AS CmplncReqReasonDetailAlias,
  ConfigurationStep.CmplncReqSolutionArea AS CmplncReqSolutionArea,
  ConfigurationStep.CmplncReqStepSequenceNumber AS CmplncReqStepSequenceNumber,
  StepInstance.CmplncRequestStepIsCompleted AS CmplncRequestStepIsCompleted,
  StepInstance.ChmlCmplncReqStepProcessorUser AS ChmlCmplncReqStepProcessorUser,
  ComplianceRequest.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  ComplianceRequest._ChmlCmplncInfo AS _ChmlCmplncInfo
FROM I_ChmlCmplncReq AS ComplianceRequest
;