A_ProcurementProjectPlant

DDL: A_PROCUREMENTPROJECTPLANT Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_PROCMTPROJ_API

Plant

A_ProcurementProjectPlant is a Consumption CDS View that provides data about "Plant" in SAP S/4HANA. It reads from 1 data source (R_ProcurementProjectPlantTP) and exposes 10 fields with key field ProcmtProjectPlantUUID. It is exposed through 1 OData service (API_PROCUREMENTPROJECT). Part of development package ODATA_MM_PUR_PROCMTPROJ_API.

Data Sources (1)

SourceAliasJoin Type
R_ProcurementProjectPlantTP R_ProcurementProjectPlantTP projection

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.representativeKey ProcmtProjectPlantUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Plant view
OData.entityType.name ProcurementProjectPlant_Type view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix PPP 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 (10)

KeyFieldSource TableSource FieldDescription
KEY ProcmtProjectPlantUUID ProcmtProjectPlantUUID Plant UUID
ProcurementProjectPlant ProcurementProjectPlant Plant
ProductionStartDate ProductionStartDate Start of Production
ProductionEndDate ProductionEndDate Production End Date
ProcurementProjectUUID ProcurementProjectUUID Procurement Project UUID
CompanyCode CompanyCode Receiver Company Code
ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
ProcmtHubPlantUniqueID ProcmtHubPlantUniqueID Plant Unique ID
SourcingOrigin SourcingOrigin Sourcing Origin
SourcingScenario SourcingScenario Integration Scenario

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_ProcurementProjectPlant.
-- 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_ProcurementProjectPlant AS
SELECT
  ProcmtProjectPlantUUID,
  ProcurementProjectPlant,
  ProductionStartDate,
  ProductionEndDate,
  ProcurementProjectUUID,
  CompanyCode,
  ProcurementHubSourceSystem,
  ProcmtHubPlantUniqueID,
  SourcingOrigin,
  SourcingScenario
FROM R_ProcurementProjectPlantTP
;