P_SRCGPROJ_ITEM_SDM_PUUID

DDL: P_SRCGPROJ_ITEM_SDM_PUUID Type: view_entity

SDM SRCGPROJ item base

P_SRCGPROJ_ITEM_SDM_PUUID is a CDS View that provides data about "SDM SRCGPROJ item base" in SAP S/4HANA. It reads from 1 data source (P_SRCGPROJ_ITEM_BASE_PUUID) and exposes 10 fields with key field Sourcingprojectitemuuid. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_SRCGPROJ_ITEM_BASE_PUUID P_SRCGPROJ_ITEM_BASE_PUUID from

Associations (1)

CardinalityTargetAliasCondition
[0..1] mmsrcgpitem _Parent_item_guid _Parent_item_guid.sourcingprojectitemuuid = $projection.Sourcingprojectitemparentuuid

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SDM SRCGPROJ item base view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Sourcingprojectitemuuid Sourcingprojectitemuuid Item UUID
SourcingProject SourcingProject Sourcing Project
SourcingProjectItem SourcingProjectItem Item
Sourcingprojectuuid Sourcingprojectuuid Sourcing Project UUID
Sourcingprojectitemparent Sourcingprojectitemparent Item Parent
Sourcingprojectitemparentuuid Sourcingprojectitemparentuuid
Sourcingprojectitemtype Sourcingprojectitemtype Item Type
Srcgprojitemclassification Srcgprojitemclassification Item Classification
Alternativeitemid Alternativeitemid Alternative Item ID
Formatteditemid Formatteditemid Item Number

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_SRCGPROJ_ITEM_SDM_PUUID.
-- 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_SRCGPROJ_ITEM_SDM_PUUID AS
SELECT
  Sourcingprojectitemuuid,
  SourcingProject,
  SourcingProjectItem,
  Sourcingprojectuuid,
  Sourcingprojectitemparent,
  Sourcingprojectitemparentuuid,
  Sourcingprojectitemtype,
  Srcgprojitemclassification,
  Alternativeitemid,
  Formatteditemid
FROM P_SRCGPROJ_ITEM_BASE_PUUID
LEFT OUTER JOIN mmsrcgpitem AS _Parent_item_guid ON _Parent_item_guid.sourcingprojectitemuuid = Sourcingprojectitemparentuuid  -- association [0..1]
;