I_TravelExpenseStatus

DDL: I_TRAVELEXPENSESTATUS Type: view BASIC

Travel Expense Status

I_TravelExpenseStatus is a Basic CDS View that provides data about "Travel Expense Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field TravelStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TravelExpenseStatusText _StatusText

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ITRVLEXPNSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Travel Expense Status 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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TravelStatus
_StatusText _StatusText
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: { sqlViewName: 'ITRVLEXPNSTS',
                compiler.compareFilter: true,
                preserveKey: true }
                
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Travel Expense Status'

@VDM: { viewType: #BASIC,
        lifecycle.contract.type: #PUBLIC_LOCAL_API }
        
@ObjectModel: { 
                usageType: { dataClass: #META,
                             sizeCategory: #S,
                             serviceQuality: #A },
                representativeKey:  'TravelStatus' }               
                  
define root view I_TravelExpenseStatus
  as select from dd07l
  composition [0..*] of I_TravelExpenseStatusText as _StatusText
{
      @ObjectModel.text.association: '_StatusText'
  key substring( domvalue_l, 1, 10 ) as TravelStatus,
      _StatusText
}
where
      domname  = 'MTE_DOM_STATUS_FIORI'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_TRAVELEXPENSESTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/