P_ListSubstGrpDefName

DDL: P_LISTSUBSTGRPDEFNAME Type: view_entity COMPOSITE

P_ListSubstGrpDefName is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_Language, I_CmplRqVersSubstListGrp) and exposes 5 fields with key fields ListedSubstanceGroup, Language, BCO_ID, CmplRqVersUUID, RegulatoryListUUID.

Data Sources (2)

SourceAliasJoin Type
I_Language Language cross
I_CmplRqVersSubstListGrp list_subst_grp from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ListedSubstanceGroup I_CmplRqVersSubstListGrp ListedSubstanceGroup Group of Substances
KEY Language I_Language Language Report Text Language
KEY BCO_ID I_CmplRqVersSubstListGrp CmplRqVers Compliance Requirement
KEY CmplRqVersUUID I_CmplRqVersSubstListGrp CmplRqVersUUID NodeID
KEY RegulatoryListUUID I_CmplRqVersSubstListGrp SubstanceListUUID Substance List

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_ListSubstGrpDefName.
-- 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_ListSubstGrpDefName AS
SELECT
  list_subst_grp.ListedSubstanceGroup AS ListedSubstanceGroup,
  Language.Language AS Language,
  list_subst_grp.CmplRqVers AS BCO_ID,
  list_subst_grp.CmplRqVersUUID AS CmplRqVersUUID,
  list_subst_grp.SubstanceListUUID AS RegulatoryListUUID
FROM I_CmplRqVersSubstListGrp AS list_subst_grp
CROSS JOIN I_Language AS Language
;