I_PPM_ProjectType

DDL: I_PPM_PROJECTTYPE SQL: IPPMPROTYPE Type: view BASIC

Project Type

I_PPM_ProjectType is a Basic CDS View that provides data about "Project Type" in SAP S/4HANA. It reads from 1 data source (dpr_pro_type) and exposes 5 fields with key field ProjectType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dpr_pro_type ProjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PPM_ProTypeText _Text _Text.ProjectType = $projection.ProjectType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPPMPROTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Project Type view
VDM.viewType #BASIC view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.status #ACTIVE view
ObjectModel.representativeKey ProjectType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProjectType dpr_pro_type pro_type Project type
AccountingIntegrationCode dpr_pro_type repl_allowed Acct. Intgrtn Scen.
ProjectCategory dpr_pro_type pro_category Proj. Category
ProjectProfileCode dpr_pro_type profidproj Project Profile
_Text _Text

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_PPM_ProjectType.
-- 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.
-- SQL view name: IPPMPROTYPE

CREATE VIEW I_PPM_ProjectType AS
SELECT
  ProjectType.pro_type AS ProjectType,
  ProjectType.repl_allowed AS AccountingIntegrationCode,
  ProjectType.pro_category AS ProjectCategory,
  ProjectType.profidproj AS ProjectProfileCode
FROM dpr_pro_type AS ProjectType
LEFT OUTER JOIN I_PPM_ProTypeText AS _Text ON _Text.ProjectType = ProjectType  -- association [0..*]
;