I_BudgetDocWorkFlowStatusText

DDL: I_BUDGETDOCWORKFLOWSTATUSTEXT SQL: IBDGTDOCWFSTATT Type: view BASIC

Budget Document Work Flow Status - Text

I_BudgetDocWorkFlowStatusText is a Basic CDS View that provides data about "Budget Document Work Flow Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key field Language. 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 (14)

NameValueLevelField
AbapCatalog.sqlViewName IBDGTDOCWFSTATT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Document Work Flow Status - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BudgetDocWorkFlowStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
BudgetDocWorkFlowStatusText
DomainValue dd07t domvalue_l
_BudgetDocWorkFlowStatus _BudgetDocWorkFlowStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IBDGTDOCWFSTATT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Document Work Flow Status - Text'

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel: {
     supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT ],
     dataCategory: #TEXT,
     representativeKey: 'BudgetDocWorkFlowStatus',
     usageType: {
         dataClass: #META,
         serviceQuality: #A,
         sizeCategory: #S
     }
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_BudgetDocWorkFlowStatusText
  as select from dd07t
  association        to parent I_BudgetDocWorkFlowStatus as _BudgetDocWorkFlowStatus on $projection.BudgetDocWorkFlowStatus = _BudgetDocWorkFlowStatus.BudgetDocWorkFlowStatus
  association [0..1] to I_Language                       as _Language                on $projection.Language                = _Language.Language
{
      @ObjectModel.foreignKey.association: '_BudgetDocWorkFlowStatus'
      @ObjectModel.text.element: ['BudgetDocWorkFlowStatusText']
  key cast( cast ( substring( dd07t.domvalue_l, 1, 1 )
                   as abap.char( 1 ) ) as bdgt_doc_workflow_status )          as BudgetDocWorkFlowStatus,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type )                       as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      cast ( dd07t.ddtext as bdgt_doc_workflow_status_text preserving type )  as BudgetDocWorkFlowStatusText,
      @Consumption.hidden: true
      dd07t.domvalue_l                                                        as DomainValue,

      _BudgetDocWorkFlowStatus,
      _Language

}
where domname    =  'BDGT_DOC_WORKFLOW_STATUS'
  and as4local   =  'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BUDGETDOCWORKFLOWSTATUS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/