I_BudgetPeriodBasic
Budget Period Basic
I_BudgetPeriodBasic is a Basic CDS View (Dimension) that provides data about "Budget Period Basic" in SAP S/4HANA. It reads from 1 data source (fmbudgetpd) and exposes 17 fields with key field BudgetPeriod. It has 6 associations to related views. Part of development package PSM_S4C_BASIS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fmbudgetpd | fmbudgetpd | from |
Associations (6)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BudgetPeriodText | _Text | $projection.BudgetPeriod = _Text.BudgetPeriod |
| [1..1] | I_FundPeriodicity | _FundPeriodicity | $projection.BudgetPeriodPeriodicity = _FundPeriodicity.FundPeriodicity |
| [0..1] | I_User | _CreatedByUser | $projection.CreatedByUser = _CreatedByUser.UserID |
| [0..1] | I_User | _LastChangedByUser | $projection.LastChangeUser = _LastChangedByUser.UserID |
| [0..*] | I_BudgetPeriodHierarchyNode | _BudgetPeriodHierarchyNode | $projection.BudgetPeriod = _BudgetPeriodHierarchyNode.BudgetPeriod |
| [0..*] | I_FundToBudgetPeriod | _FundToBudgetPeriod | $projection.BudgetPeriod = _FundToBudgetPeriod.BudgetPeriod |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Budget Period Basic | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.internalName | #LOCAL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | BudgetPeriod | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | IBUDGETPERIODB | view | |
| AbapCatalog.preserveKey | true | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BudgetPeriod | budget_pd | Rec BudPer | |
| ValidityStartDate | Validity period | |||
| ValidityEndDate | Valid To | |||
| BudgetPeriodExpirationDate | Expiration Date | |||
| BudgetPeriodReversalDate | Reversal Date | |||
| BudgetPeriodAuthznGrp | authgrp | Authorization Group | ||
| CreatedByUser | Version Created By | |||
| CreationDate | Variant created on | |||
| LastChangeUser | User Name | |||
| LastChangeDate | Last Modified on | |||
| BudgetPeriodPeriodicity | periodicity | Time Periods | ||
| _Text | _Text | |||
| _FundPeriodicity | _FundPeriodicity | |||
| _CreatedByUser | _CreatedByUser | |||
| _LastChangedByUser | _LastChangedByUser | |||
| _BudgetPeriodHierarchyNode | _BudgetPeriodHierarchyNode | |||
| _FundToBudgetPeriod | _FundToBudgetPeriod |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_BudgetPeriodBasic.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IBUDGETPERIODB
CREATE VIEW I_BudgetPeriodBasic AS
SELECT
budget_pd AS BudgetPeriod,
cast( datab as fmis_bpd_validitystartdate preserving type ) AS ValidityStartDate,
cast( datbis as fmis_bpd_validityenddate preserving type ) AS ValidityEndDate,
cast( date_exp as fmis_bpd_expirationdate preserving type ) AS BudgetPeriodExpirationDate,
cast( date_can as fmis_bpd_reversaldate preserving type ) AS BudgetPeriodReversalDate,
authgrp AS BudgetPeriodAuthznGrp,
cast( created_by as fmis_bpd_createdbyuser preserving type ) AS CreatedByUser,
cast( created_on as fmis_bpd_creationdate preserving type ) AS CreationDate,
cast( modified_by as fmis_bpd_lastchangeuser preserving type ) AS LastChangeUser,
cast( modified_on as fmis_bpd_lastchangedate preserving type ) AS LastChangeDate,
periodicity AS BudgetPeriodPeriodicity
FROM fmbudgetpd
LEFT OUTER JOIN I_BudgetPeriodText AS _Text ON BudgetPeriod = _Text.BudgetPeriod -- association [0..*]
LEFT OUTER JOIN I_FundPeriodicity AS _FundPeriodicity ON BudgetPeriodPeriodicity = _FundPeriodicity.FundPeriodicity -- association [1..1]
LEFT OUTER JOIN I_User AS _CreatedByUser ON CreatedByUser = _CreatedByUser.UserID -- association [0..1]
LEFT OUTER JOIN I_User AS _LastChangedByUser ON LastChangeUser = _LastChangedByUser.UserID -- association [0..1]
LEFT OUTER JOIN I_BudgetPeriodHierarchyNode AS _BudgetPeriodHierarchyNode ON BudgetPeriod = _BudgetPeriodHierarchyNode.BudgetPeriod -- association [0..*]
LEFT OUTER JOIN I_FundToBudgetPeriod AS _FundToBudgetPeriod ON BudgetPeriod = _FundToBudgetPeriod.BudgetPeriod -- association [0..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA