I_BudgetProcess

DDL: I_BUDGETPROCESS SQL: IFIBDGTPROC Type: view BASIC Package: FINS_ACDOC_BUDGETING

Budget Process

I_BudgetProcess is a Basic CDS View that provides data about "Budget Process" in SAP S/4HANA. It reads from 1 data source (budget_d_process) and exposes 2 fields with key field BudgetProcess. It has 1 association to related views. Part of development package FINS_ACDOC_BUDGETING.

Data Sources (1)

SourceAliasJoin Type
budget_d_process budget_d_process from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BudgetProcessText _Text $projection.BudgetProcess = _Text.BudgetProcess

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIBDGTPROC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Process 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 BudgetProcess view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BudgetProcess budget_process
_Text _Text
@AbapCatalog.sqlViewName: 'IFIBDGTPROC'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Budget Process'
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true

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

define view I_BudgetProcess
  as select from budget_d_process
  association [0..*] to I_BudgetProcessText as _Text on $projection.BudgetProcess = _Text.BudgetProcess
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key budget_process as BudgetProcess,

      _Text

}