I_BudgetPeriodText

DDL: I_BUDGETPERIODTEXT SQL: IBUDGETPERIODT Type: view BASIC

Budget Period - Text

I_BudgetPeriodText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_BudgetPeriodText is a Basic CDS View that provides data about "Budget Period - Text" in SAP S/4HANA. It reads from 1 data source (fmbudgetpdt) and exposes 5 fields with key fields Language, BudgetPeriod. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-MD
CapabilitiesLanguage-Dependent Text, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fmbudgetpdt fmbudgetpdt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _Language.Language = $projection.Language
[0..1] I_BudgetPeriod _BudgetPeriod $projection.BudgetPeriod = _BudgetPeriod.BudgetPeriod

Annotations (15)

NameValueLevelField
EndUserText.label Budget Period - Text view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey BudgetPeriod view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IBUDGETPERIODT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY BudgetPeriod budget_pd Budget Period
BudgetPeriodName Budget Period Name
_Language _Language
_BudgetPeriod _BudgetPeriod

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_BudgetPeriodText.
-- 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: IBUDGETPERIODT

CREATE VIEW I_BudgetPeriodText AS
SELECT
  spras AS Language,
  budget_pd AS BudgetPeriod,
  cast( budgetpdtx as fm_budget_period_name preserving type ) AS BudgetPeriodName
FROM fmbudgetpdt
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = Language  -- association [0..1]
LEFT OUTER JOIN I_BudgetPeriod AS _BudgetPeriod ON BudgetPeriod = _BudgetPeriod.BudgetPeriod  -- association [0..1]
;