A_EntProjectPriorityCode

DDL: A_ENTPROJECTPRIORITYCODE Type: view_entity BASIC Package: VDM_PPM_OBJECTS_COMMON

Project Priority

A_EntProjectPriorityCode is a Basic CDS View that provides data about "Project Priority" in SAP S/4HANA. It reads from 1 data source (I_EntProjectPriorityCode) and exposes 2 fields with key field PriorityCode. It is exposed through 1 OData service (API_ENTPROJECTPRIORITYCODE). Part of development package VDM_PPM_OBJECTS_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_EntProjectPriorityCode I_EntProjectPriorityCode projection

Annotations (10)

NameValueLevelField
EndUserText.label Project Priority view
ObjectModel.representativeKey PriorityCode view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
API_ENTPROJECTPRIORITYCODE API_ENTPROJPRIORITYCODE V4 C2 C1

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PriorityCode PriorityCode Priority
PriorityCodeNamelocalized

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_EntProjectPriorityCode.
-- 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_EntProjectPriorityCode AS
SELECT
  PriorityCode,
  _PriorityCodeText.PriorityCodeName : localized AS PriorityCodeNamelocalized
FROM I_EntProjectPriorityCode
;