I_RELocationClass
Location Class
I_RELocationClass is a Basic CDS View (Dimension) that provides data about "Location Class" in SAP S/4HANA. It reads from 1 data source (tivajrlraloc) and exposes 9 fields with key fields REListOfRents, REListOfRentsLocationClass. It has 3 associations to related views. Part of development package VDM_RE_BD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tivajrlraloc | tivajrlraloc | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_REListOfRents | _REListOfRents | $projection.REListOfRents = _REListOfRents.REListOfRents |
| [0..*] | I_RELocationClassText | _Text | $projection.REListOfRentsLocationClass = _Text.REListOfRentsLocationClass and $projection.REListOfRents = _Text.REListOfRents |
| [0..1] | I_Currency | _Currency | $projection.Currency = _Currency.Currency |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRELOCCLASS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | REListOfRentsLocationClass | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Location Class | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | REListOfRents | rlra | ||
| KEY | REListOfRentsLocationClass | rlraloc | ||
| RELocationClassBaseAmount | rlrabaseamtloc | |||
| Currency | _REListOfRents | Currency | ||
| REAreaByLocClassBaseAmount | rlraareaamtloc | |||
| REMaxNumberOfPointsPerClass | rlramaxpointsiz | |||
| _REListOfRents | _REListOfRents | |||
| _Text | _Text | |||
| _Currency | _Currency |
@AbapCatalog.sqlViewName: 'IRELOCCLASS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName:#LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: 'REListOfRentsLocationClass'
@ObjectModel.semanticKey: ['REListOfRentsLocationClass', 'REListOfRents']
@VDM.viewType: #BASIC
@EndUserText.label: 'Location Class'
define view I_RELocationClass
as select from tivajrlraloc
association [1..1] to I_REListOfRents as _REListOfRents on $projection.REListOfRents = _REListOfRents.REListOfRents
association [0..*] to I_RELocationClassText as _Text on $projection.REListOfRentsLocationClass = _Text.REListOfRentsLocationClass
and $projection.REListOfRents = _Text.REListOfRents
association [0..1] to I_Currency as _Currency on $projection.Currency = _Currency.Currency
{
@ObjectModel.foreignKey.association: '_REListOfRents'
key rlra as REListOfRents,
@ObjectModel.text.association: '_Text'
key rlraloc as REListOfRentsLocationClass,
@Semantics.amount.currencyCode: 'Currency'
rlrabaseamtloc as RELocationClassBaseAmount,
@ObjectModel.foreignKey.association: '_Currency'
@Semantics.currencyCode
_REListOfRents.Currency as Currency,
@Semantics.amount.currencyCode: 'Currency'
rlraareaamtloc as REAreaByLocClassBaseAmount,
rlramaxpointsiz as REMaxNumberOfPointsPerClass,
_REListOfRents,
_Text,
_Currency
}
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