I_GenericPriorityTypeText
Generic Priority Type Text
I_GenericPriorityTypeText is a Basic CDS View that provides data about "Generic Priority Type Text" in SAP S/4HANA. It reads from 1 data source (t356a_t) and exposes 5 fields with key fields Language, GenericPriorityType. It has 2 associations to related views. Part of development package IWOC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t356a_t | t356a_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_GenericPriorityType | _GenericPriorityType | _GenericPriorityType.GenericPriorityType = $projection.GenericPriorityType |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Generic Priority Type Text | view | |
| ObjectModel.representativeKey | GenericPriorityType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Analytics.technicalName | IGENPRIOTYPETXT | view | |
| VDM.viewType | #BASIC | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Generic Priority Type Text'
@ObjectModel.representativeKey: 'GenericPriorityType'
@ObjectModel: {
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING
}
@Analytics.technicalName: 'IGENPRIOTYPETXT'
@VDM.viewType: #BASIC
define view entity I_GenericPriorityTypeText
as select from t356a_t
association [0..1] to I_GenericPriorityType as _GenericPriorityType on _GenericPriorityType.GenericPriorityType = $projection.GenericPriorityType
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key t356a_t.spras as Language,
@ObjectModel.foreignKey.association: '_GenericPriorityType'
key t356a_t.artpr as GenericPriorityType,
@Semantics.text: true
t356a_t.artprx as GenericPriorityTypeDesc,
// Propagate association(s)
_GenericPriorityType,
_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