I_EnterpriseProjectTypeText
Internal Project Type Description
I_EnterpriseProjectTypeText is a Basic CDS View that provides data about "Internal Project Type Description" in SAP S/4HANA. It reads from 1 data source (dpr_pro_type_t) and exposes 5 fields with key fields Language, EntProjectTypeInternal. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dpr_pro_type_t | dpr_pro_type_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IENTPRTYPET | view | |
| EndUserText.label | Internal Project Type Description | 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.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | dpr_pro_type_t | language | |
| KEY | EntProjectTypeInternal | dpr_pro_type_t | pro_type | |
| ProjectTypeName | dpr_pro_type_t | type_text | ||
| _ProjectType | _ProjectType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IENTPRTYPET'
@EndUserText.label: 'Internal Project Type Description'
@ObjectModel.representativeKey: 'EntProjectTypeInternal'
@ObjectModel.resultSet.sizeCategory: #XS
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@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 view I_EnterpriseProjectTypeText
as select from dpr_pro_type_t
association to parent I_EnterpriseProjectType as _ProjectType
on $projection.EntProjectTypeInternal = _ProjectType.EntProjectTypeInternal
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key dpr_pro_type_t.language as Language,
@ObjectModel.foreignKey.association: '_ProjectType'
@ObjectModel.text.element: ['ProjectTypeName']
key dpr_pro_type_t.pro_type as EntProjectTypeInternal,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
dpr_pro_type_t.type_text as ProjectTypeName,
_ProjectType,
_Language
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA