C_ProcurementProjectTP

DDL: C_PROCUREMENTPROJECTTP Type: view_entity CONSUMPTION Package: ODATA_MM_PUR_PROCMTPROJ_MNTN

Procurement Project - TP

C_ProcurementProjectTP is a Consumption CDS View that provides data about "Procurement Project - TP" in SAP S/4HANA. It reads from 1 data source (R_ProcurementProjectTP) and exposes 24 fields with key field ProcurementProjectUUID. It is exposed through 2 OData services (UI_PROCMTPROJECT_MANAGE, UI_PROCMTPROJECT_MANAGE). Part of development package ODATA_MM_PUR_PROCMTPROJ_MNTN.

Data Sources (1)

SourceAliasJoin Type
R_ProcurementProjectTP R_ProcurementProjectTP projection

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey ProcurementProjectUUID view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Procurement Project - TP view
Metadata.allowExtensions true view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix PPJ view
AbapCatalog.extensibility.quota.maximumFields 404 view
AbapCatalog.extensibility.quota.maximumBytes 40400 view
AbapCatalog.extensibility.allowNewCompositions true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_PROCMTPROJECT_MANAGE UI_PROCMTPROJECT_MANAGE V4 C1 NOT_RELEASED
UI_PROCMTPROJECT_MANAGE UI_PROCMTPROJECTV2_MANAGE V2 C1 NOT_RELEASED

Fields (24)

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
CompanyCodeForEdit CompanyCodeForEdit Company Code
CompanyCodeName _CompanyCode CompanyCodeName Company Name
ProcurementProjectActvtnSts ProcurementProjectActvtnSts Status
SourcingOrigin SourcingOrigin Sourcing Origin
SrcgProjSourcingOriginTextlocalized
SourcingScenario SourcingScenario Integration Scenario
SrcgProjSourcingScenarioTextlocalized
ProcurementProjActvtnStsNamelocalized
LastChangedByUser LastChangedByUser User Name
ChangedByUserName _ChangedByUser UserDescription Full Name
CreatedByUser CreatedByUser User Name
CreatedByUserName _CreatedByUser UserDescription Full Name
LastChangeDateTime LastChangeDateTime Timestamp
CreationDateTime CreationDateTime Timestamp
ProcmtPlanningSubprojectUUID ProcmtPlanningSubprojectUUID Procurement Planning Subproject UUID
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
char1
_CreatedByUser _CreatedByUser
_ChangedByUser _ChangedByUser

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 C_ProcurementProjectTP.
-- 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 C_ProcurementProjectTP AS
SELECT
  ProcurementProjectUUID,
  ProcurementProject,
  ProcurementProjectName,
  ExternalProjectReference,
  CompanyCode,
  CompanyCodeForEdit,
  _CompanyCode.CompanyCodeName AS CompanyCodeName,
  ProcurementProjectActvtnSts,
  SourcingOrigin,
  _SrcgProjSourcingOriginText.SrcgProjSourcingOriginText : localized AS SrcgProjSourcingOriginTextlocalized,
  SourcingScenario,
  _SrcgProjSourcingScenarioText.SrcgProjSourcingScenarioText : localized AS SrcgProjSourcingScenarioTextlocalized,
  _ProcurementProjActvtnStsTxt.ProcurementProjActvtnStsName : localized AS ProcurementProjActvtnStsNamelocalized,
  LastChangedByUser,
  _ChangedByUser.UserDescription AS ChangedByUserName,
  CreatedByUser,
  _CreatedByUser.UserDescription AS CreatedByUserName,
  LastChangeDateTime,
  CreationDateTime,
  ProcmtPlanningSubprojectUUID,
  IsEndOfPurposeBlocked,
  virtual IsChangeDocumentsEnabled : abap.char( 1 ) AS char1
FROM R_ProcurementProjectTP
;