I_RetailPromotionTypeT
Retail Promotion Type Text
I_RetailPromotionTypeT is a Basic CDS View that provides data about "Retail Promotion Type Text" in SAP S/4HANA. It reads from 1 data source (twaat) and exposes 5 fields with key fields RetailPromotionType, Language. It has 2 associations to related views. Part of development package VDM_RFM_PROMOTION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twaat | twaat | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_RetailPromotionType | _RetailPromotionType | $projection.RetailPromotionType = _RetailPromotionType.RetailPromotionType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.technicalName | IRTLPROMNTYPET | view | |
| EndUserText.label | Retail Promotion Type Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RetailPromotionType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RetailPromotionType | akart | ||
| KEY | Language | |||
| RetailPromotionTypeName | arttx | |||
| _RetailPromotionType | _RetailPromotionType | |||
| _Language | _Language |
@Analytics.technicalName: 'IRTLPROMNTYPET'
@EndUserText.label: 'Retail Promotion Type Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'RetailPromotionType',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
define view entity I_RetailPromotionTypeT
as select from twaat
association [1..1] to I_RetailPromotionType as _RetailPromotionType on $projection.RetailPromotionType = _RetailPromotionType.RetailPromotionType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_RetailPromotionType'
key akart
as RetailPromotionType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( spras as langu preserving type )
as Language,
@Semantics.text: true
arttx
as RetailPromotionTypeName,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_RetailPromotionType,
_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