I_BudgetingType

DDL: I_BUDGETINGTYPE SQL: IFIBDGTTYPE Type: view BASIC

Budget Type

I_BudgetingType is a Basic CDS View that provides data about "Budget Type" in SAP S/4HANA. It reads from 1 data source (bdgt_d_subcateg) and exposes 4 fields with key field BudgetingType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
bdgt_d_subcateg bdgt_d_subcateg from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BudgetingTypeText _Text $projection.BudgetingType = _Text.BudgetingType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIBDGTTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Type view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BudgetingType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BudgetingType budget_subcategory
PubSecBudgetReleaseStatus budget_release_status
PubSecBudgetIsConsumable budget_consumable
_Text _Text
@AbapCatalog.sqlViewName: 'IFIBDGTTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Type'
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true 
@ObjectModel: {
     representativeKey: 'BudgetingType',
     usageType: {
         dataClass: #CUSTOMIZING,
         serviceQuality: #A,
         sizeCategory: #S
     },
     supportedCapabilities: [ #ANALYTICAL_DIMENSION ]
}

define view I_BudgetingType 
  as select from bdgt_d_subcateg
  association [0..*] to I_BudgetingTypeText as _Text on $projection.BudgetingType = _Text.BudgetingType
{
  @ObjectModel.text.association: '_Text'
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key budget_subcategory    as BudgetingType,
      budget_release_status as PubSecBudgetReleaseStatus,
      budget_consumable     as PubSecBudgetIsConsumable,
  _Text
    
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BDGT_D_SUBCATEG"
],
"ASSOCIATED":
[
"I_BUDGETINGTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/