I_RACatchUpDisplayModeText

DDL: I_RACATCHUPDISPLAYMODETEXT SQL: IRACUPDSPMODET Type: view BASIC

Description of Revenue Catch-up Display Mode

I_RACatchUpDisplayModeText is a Basic CDS View that provides data about "Description of Revenue Catch-up Display Mode" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, RAItemType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRACUPDSPMODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Description of Revenue Catch-up Display Mode view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RAItemType view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY RAItemType
RAItemTypeName ddtext
_Language _Language
_RACatchUpDisplayMode _RACatchUpDisplayMode
@AbapCatalog.sqlViewName: 'IRACUPDSPMODET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Description of Revenue Catch-up Display Mode'

@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RAItemType'
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}

@VDM.viewType: #BASIC
define view I_RACatchUpDisplayModeText
as select from dd07t
association to parent I_RACatchUpDisplayMode as _RACatchUpDisplayMode 
  on $projection.RAItemType = _RACatchUpDisplayMode.RAItemType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key dd07t.ddlanguage as Language,
        
    @ObjectModel.foreignKey.association: '_RACatchUpDisplayMode'
    key cast(domvalue_l as farr_rev_catchup_displaymode) as RAItemType,
    
    @Semantics.text: true
    ddtext as RAItemTypeName,       

    _Language,
    _RACatchUpDisplayMode
}
where dd07t.domname  = 'FARR_REV_CATCHUP_DISPLAYMODE' 
and dd07t.as4local = 'A'  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RACATCHUPDISPLAYMODE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/