I_RtlPromnLocalStoreGroupT
Retail Promotion Local Store Group Text
I_RtlPromnLocalStoreGroupT is a Basic CDS View that provides data about "Retail Promotion Local Store Group Text" in SAP S/4HANA. It reads from 1 data source (wrf_rpr_wapgt) and exposes 7 fields with key fields RetailPromotion, StoreGroupInternalID, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| wrf_rpr_wapgt | wrf_rpr_wapgt | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_RtlPromnLocalStoreGroup | _RtlPromnLocalStoreGroup | $projection.RetailPromotion = _RtlPromnLocalStoreGroup.RetailPromotion and $projection.StoreGroupInternalID = _RtlPromnLocalStoreGroup.StoreGroupInternalID |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_RetailPromotion | _RetailPromotion | $projection.RetailPromotion = _RetailPromotion.RetailPromotion |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.technicalName | IRTLPRMNLCSTGRPT | view | |
| EndUserText.label | Retail Promotion Local Store Group Text | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | StoreGroupInternalID | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RetailPromotion | aktnr | ||
| KEY | StoreGroupInternalID | pgrpn | ||
| KEY | Language | |||
| RetailPromotionStoreGroupName | pgrpnt | |||
| _RtlPromnLocalStoreGroup | _RtlPromnLocalStoreGroup | |||
| _Language | _Language | |||
| _RetailPromotion | _RetailPromotion |
@Analytics.technicalName: 'IRTLPRMNLCSTGRPT'
@EndUserText.label: 'Retail Promotion Local Store Group Text'
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
// representativeKey: 'RetailPromotionStoreGroup',
representativeKey: 'StoreGroupInternalID',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
}
define view entity I_RtlPromnLocalStoreGroupT
as select from wrf_rpr_wapgt
association [1..1] to I_RtlPromnLocalStoreGroup as _RtlPromnLocalStoreGroup on $projection.RetailPromotion = _RtlPromnLocalStoreGroup.RetailPromotion
and $projection.StoreGroupInternalID = _RtlPromnLocalStoreGroup.StoreGroupInternalID
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_RetailPromotion as _RetailPromotion on $projection.RetailPromotion = _RetailPromotion.RetailPromotion
{
@ObjectModel.foreignKey.association: '_RtlPromnLocalStoreGroup'
key aktnr as RetailPromotion,
key pgrpn as StoreGroupInternalID, // WAGU-CLINT
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( spras as langu preserving type )
as Language,
@Semantics.text: true
pgrpnt
as RetailPromotionStoreGroupName,
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_RtlPromnLocalStoreGroup,
_Language,
_RetailPromotion
}
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