I_TravelExpenseStatusText

DDL: I_TRAVELEXPENSESTATUSTEXT Type: view BASIC

Travel Expense Status - Text

I_TravelExpenseStatusText is a Basic CDS View that provides data about "Travel Expense Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, TravelStatus. 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
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ITRVLEXPNSTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Travel Expense Status - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey TravelStatus view
ObjectModel.dataCategory #TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY TravelStatus
TravelStatusText ddtext
_Language _Language
_StatusText _StatusText
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: { sqlViewName: 'ITRVLEXPNSTST',
                compiler.compareFilter: true,
                preserveKey: true }
                
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Travel Expense Status - Text'

@VDM: { viewType: #BASIC,
        lifecycle.contract.type: #PUBLIC_LOCAL_API }
        
@ObjectModel: {
                usageType: { dataClass: #META,
                             sizeCategory: #S,
                             serviceQuality: #A },
                representativeKey: 'TravelStatus',
                dataCategory: #TEXT                }
                 
define view I_TravelExpenseStatusText
  as select from dd07t
  association [0..1] to I_Language                   as _Language   on $projection.Language = _Language.Language
  association        to parent I_TravelExpenseStatus as _StatusText on $projection.TravelStatus = _StatusText.TravelStatus
{
        @ObjectModel.foreignKey.association: '_Language'
        @Semantics.language: true
  key   ddlanguage                     as Language,
  key   substring( domvalue_l, 1, 10 ) as TravelStatus,

        @Semantics.text: true
        ddtext                         as TravelStatusText,

        /* Associations */
        _Language,
        _StatusText
}
where
      domname    = 'MTE_DOM_STATUS_FIORI'
  and as4local   = 'A'
  and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TRAVELEXPENSESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/