I_BudgetDocumentStatus

DDL: I_BUDGETDOCUMENTSTATUS Type: view BASIC

Budget Document Status

I_BudgetDocumentStatus is a Basic CDS View that provides data about "Budget Document Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BudgetDocumentStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BudgetDocumentStatusText _Text $projection.BudgetDocumentStatus = _Text.BudgetDocumentStatus

Annotations (13)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IBDGTDOCSTATUS view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Document Status view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey BudgetDocumentStatus view
VDM.viewType #BASIC view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BudgetDocumentStatus
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog: { preserveKey:true,
                compiler.compareFilter: true,
                sqlViewName: 'IBDGTDOCSTATUS' }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Document Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: { usageType: { dataClass: #META,
                             serviceQuality: #C,
                             sizeCategory: #S },
                resultSet.sizeCategory: #XS,
                representativeKey: 'BudgetDocumentStatus' }
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_BudgetDocumentStatus
  as select from dd07l
  association [0..*] to I_BudgetDocumentStatusText as _Text on $projection.BudgetDocumentStatus = _Text.BudgetDocumentStatus
{
      @ObjectModel.text.association: '_Text'
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bdgt_docstate ) as BudgetDocumentStatus,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Consumption.hidden: true
      dd07l.domvalue_l                                                                   as DomainValue,
      _Text
}
where domname  = 'BDGT_DOCSTATE'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BUDGETDOCUMENTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/