I_BudgetingType
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)
| Source | Alias | Join Type |
|---|---|---|
| bdgt_d_subcateg | bdgt_d_subcateg | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BudgetingTypeText | _Text | $projection.BudgetingType = _Text.BudgetingType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA