A_ProcurementProject

DDL: A_PROCUREMENTPROJECT Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_PROCMTPROJ_API

Procurement Project

A_ProcurementProject is a Consumption CDS View that provides data about "Procurement Project" in SAP S/4HANA. It reads from 1 data source (R_ProcurementProjectTP) and exposes 14 fields with key field ProcurementProjectUUID. It is exposed through 1 OData service (API_PROCUREMENTPROJECT). Part of development package ODATA_MM_PUR_PROCMTPROJ_API.

Data Sources (1)

SourceAliasJoin Type
R_ProcurementProjectTP R_ProcurementProjectTP projection

Annotations (18)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.representativeKey ProcurementProjectUUID view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Procurement Project view
OData.entityType.name ProcurementProject_Type view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix PPJ view
AbapCatalog.extensibility.quota.maximumFields 204 view
AbapCatalog.extensibility.quota.maximumBytes 4080 view
AbapCatalog.extensibility.allowNewCompositions true view

OData Services (1)

ServiceBindingVersionContractRelease
API_PROCUREMENTPROJECT API_PROCUREMENTPROJECT V4 C2 Deprecated

Fields (14)

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
ProcmtPlanningSubprojectUUID ProcmtPlanningSubprojectUUID Procurement Planning Subproject UUID
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.

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 A_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 A_ProcurementProject AS
SELECT
  ProcurementProjectUUID,
  ProcurementProject,
  ProcurementProjectName,
  ExternalProjectReference,
  CompanyCode,
  LastChangedByUser,
  CreatedByUser,
  LastChangeDateTime,
  CreationDateTime,
  ProcurementProjectActvtnSts,
  SourcingOrigin,
  SourcingScenario,
  ProcmtPlanningSubprojectUUID,
  IsEndOfPurposeBlocked
FROM R_ProcurementProjectTP
;