P_DangerousGoodInProgress

DDL: P_DANGEROUSGOODINPROGRESS Type: view_entity CONSUMPTION

P_DangerousGoodInProgress is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_CmplRqRslt, I_CmplRqVersBasic) and exposes 1 field with key field ChmlCmplncInfoUUID.

Data Sources (2)

SourceAliasJoin Type
I_CmplRqRslt CRR from
I_CmplRqVersBasic CRV inner

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #CONSUMPTION view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_CmplRqRslt ChmlCmplncInfoUUID Chemical Compliance Information PP

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_DangerousGoodInProgress.
-- 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_DangerousGoodInProgress AS
SELECT
  CRR.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID
FROM I_CmplRqRslt AS CRR
INNER JOIN I_CmplRqVersBasic AS CRV ON /* join condition not captured in parsed metadata */
;