I_ProcurementProject

DDL: I_PROCUREMENTPROJECT Type: view_entity BASIC Package: VDM_MM_PUR_PROCMTPROJ

Procurement Project

I_ProcurementProject is a Basic CDS View that provides data about "Procurement Project" in SAP S/4HANA. It reads from 1 data source (R_ProcurementProject) and exposes 18 fields with key field ProcurementProjectUUID. It has 6 associations to related views. Part of development package VDM_MM_PUR_PROCMTPROJ.

Data Sources (1)

SourceAliasJoin Type
R_ProcurementProject R_ProcurementProject from

Associations (6)

CardinalityTargetAliasCondition
[1..*] I_ProcurementProjectPlant _ProcurementProjectPlant $projection.ProcurementProjectUUID = _ProcurementProjectPlant.ProcurementProjectUUID
[0..1] I_ProcurementProjectActvtnSts _ProcurementProjectActvtnSts $projection.ProcurementProjectActvtnSts = _ProcurementProjectActvtnSts.ProcurementProjectActvtnSts
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_UserContactCard _CreatedByUser $projection.CreatedByUser = _CreatedByUser.ContactCardID
[0..1] I_UserContactCard _ChangedByUser $projection.LastChangedByUser = _ChangedByUser.ContactCardID
[1..1] E_ProcurementProject _Extension $projection.ProcurementProjectUUID = _Extension.ProcurementProjectUUID

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey ProcurementProjectUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
EndUserText.label Procurement Project view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ProcurementProjectUUID ProcurementProjectUUID Procurement Project UUID
ProcurementProject ProcurementProject Project
ProcurementProjectName ProcurementProjectName Name
ExternalProjectReference ExternalProjectReference External Project Reference
CompanyCode CompanyCode Receiver Company Code
LastChangedByUser LastChangedByUser User Name
CreatedByUser CreatedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
CreationDateTime CreationDateTime Timestamp
ProcurementProjectActvtnSts ProcurementProjectActvtnSts Status
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
_ProcurementProjectPlant _ProcurementProjectPlant
_CompanyCode _CompanyCode
_CreatedByUser _CreatedByUser
_ChangedByUser _ChangedByUser
_ProcurementProjectActvtnSts _ProcurementProjectActvtnSts

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_ProcurementProject.
-- 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_ProcurementProject AS
SELECT
  ProcurementProjectUUID,
  ProcurementProject,
  ProcurementProjectName,
  ExternalProjectReference,
  CompanyCode,
  LastChangedByUser,
  CreatedByUser,
  LastChangeDateTime,
  CreationDateTime,
  ProcurementProjectActvtnSts,
  SourcingOrigin,
  SourcingScenario,
  IsEndOfPurposeBlocked
FROM R_ProcurementProject
LEFT OUTER JOIN I_ProcurementProjectPlant AS _ProcurementProjectPlant ON ProcurementProjectUUID = _ProcurementProjectPlant.ProcurementProjectUUID  -- association [1..*]
LEFT OUTER JOIN I_ProcurementProjectActvtnSts AS _ProcurementProjectActvtnSts ON ProcurementProjectActvtnSts = _ProcurementProjectActvtnSts.ProcurementProjectActvtnSts  -- association [0..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _CreatedByUser ON CreatedByUser = _CreatedByUser.ContactCardID  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _ChangedByUser ON LastChangedByUser = _ChangedByUser.ContactCardID  -- association [0..1]
LEFT OUTER JOIN E_ProcurementProject AS _Extension ON ProcurementProjectUUID = _Extension.ProcurementProjectUUID  -- association [1..1]
;