I_RELocationClass

DDL: I_RELOCATIONCLASS SQL: IRELOCCLASS Type: view BASIC Package: VDM_RE_BD

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)

SourceAliasJoin Type
tivajrlraloc tivajrlraloc from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}