I_PPM_ProTypeText
Language dependant Text for Type of a Project
I_PPM_ProTypeText is a Basic CDS View that provides data about "Language dependant Text for Type of a Project" in SAP S/4HANA. It reads from 1 data source (dpr_pro_type_t) and exposes 3 fields with key fields LanguageCode, ProjectType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dpr_pro_type_t | TypeText | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPPMPROTYPETEXT | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| Search.searchable | true | view | |
| EndUserText.label | Language dependant Text for Type of a Project | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProjectType | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | dpr_pro_type_t | language | |
| KEY | ProjectType | dpr_pro_type_t | pro_type | |
| ProjectTypeName | dpr_pro_type_t | type_text |
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPPMPROTYPETEXT'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@Search.searchable: true
@EndUserText.label: 'Language dependant Text for Type of a Project'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ProjectType'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_ProTypeText as select from dpr_pro_type_t as TypeText {
@Semantics.language: true
key TypeText.language as LanguageCode,
@ObjectModel.text.element: 'ProjectTypeName'
key TypeText.pro_type as ProjectType,
@Semantics.text: true
@Search.defaultSearchElement: true
TypeText.type_text as ProjectTypeName
}
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