I_EnterpriseProjectType

DDL: I_ENTERPRISEPROJECTTYPE SQL: IENTPRTYPE Type: view BASIC Package: VDM_PPM_OBJECTS_PROJECT

Internal Project Type

I_EnterpriseProjectType is a Basic CDS View (Dimension) that provides data about "Internal Project Type" in SAP S/4HANA. It reads from 1 data source (dpr_pro_type) and exposes 5 fields with key field EntProjectTypeInternal. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_PROJECT.

Data Sources (1)

SourceAliasJoin Type
dpr_pro_type dpr_pro_type from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EnterpriseProjectTypeText _EntProjectTypeText

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IENTPRTYPE view
EndUserText.label Internal Project Type view
ObjectModel.representativeKey EntProjectTypeInternal view
ObjectModel.resultSet.sizeCategory #XS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EntProjectTypeInternal dpr_pro_type pro_type
AccountingIntegrationCode dpr_pro_type repl_allowed
ProjectCategory dpr_pro_type pro_category
ProjectProfileCode dpr_pro_type profidproj
_EntProjectTypeText _EntProjectTypeText
@AbapCatalog.sqlViewName: 'IENTPRTYPE'
@EndUserText.label: 'Internal Project Type'
@ObjectModel.representativeKey: 'EntProjectTypeInternal'

@ObjectModel.resultSet.sizeCategory: #XS
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true

@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC

define root view I_EnterpriseProjectType 
    as select from dpr_pro_type
    composition [0..*] of I_EnterpriseProjectTypeText as _EntProjectTypeText
{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_EntProjectTypeText'
   key dpr_pro_type.pro_type      as EntProjectTypeInternal,
       dpr_pro_type.repl_allowed  as AccountingIntegrationCode,
       dpr_pro_type.pro_category  as ProjectCategory,     
       dpr_pro_type.profidproj    as ProjectProfileCode, 
      _EntProjectTypeText
}