I_FundToBudgetPeriod

DDL: I_FUNDTOBUDGETPERIOD SQL: IFUNDTOBDGTPERD Type: view COMPOSITE Package: PSM_S4C_BASIS

Relation between Fund and Budget Period

I_FundToBudgetPeriod (Composite)

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

Cross Applications

I_FundToBudgetPeriod is a Composite CDS View that provides data about "Relation between Fund and Budget Period" in SAP S/4HANA. It reads from 1 data source (I_FundToBudgetPeriodBasic) and exposes 11 fields with key fields FinancialManagementArea, Fund, BudgetPeriod. It has 2 associations to related views. Part of development package PSM_S4C_BASIS.

SAP API Hub

CategoryComposite
StateC1
Line of BusinessCross Applications
Application ComponentPSM
CapabilitiesAssociation Target for Defining CDS Entities,Data Source for Defining CDS Entities,Data Source in SQL Select
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_FundToBudgetPeriodBasic I_FundToBudgetPeriodBasic from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Fund _Fund $projection.FinancialManagementArea = _Fund.FinancialManagementArea and $projection.Fund = _Fund.Fund
[0..1] I_BudgetPeriod _BudgetPeriod $projection.BudgetPeriod = _BudgetPeriod.BudgetPeriod

Annotations (12)

NameValueLevelField
EndUserText.label Relation between Fund and Budget Period view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey BudgetPeriod view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IFUNDTOBDGTPERD view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea FinancialManagementArea Financial Management Area
KEY Fund Fund Sender Fund
KEY BudgetPeriod BudgetPeriod Budget Period
ApplOfFundByBudgetPeriod ApplOfFundByBudgetPeriod Application of Funds by Budget Period
BdgtPerdAssociationIsInactive BdgtPerdAssociationIsInactive Indicator: Fund to Budget Period assignment is inactive
FundFinMgmtAreaForAuthzn FundFinMgmtAreaForAuthzn FM Area for Auth Grp for Fund
AuthorizationGroupFundAuthznGrp Fund Authorization Group
_Fund _Fund
_BudgetPeriod _BudgetPeriod
_ApplicationOfFund _ApplicationOfFund
_FinMgmtArea _FinMgmtArea

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_FundToBudgetPeriod.
-- 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: IFUNDTOBDGTPERD

CREATE VIEW I_FundToBudgetPeriod AS
SELECT
  FinancialManagementArea,
  Fund,
  BudgetPeriod,
  ApplOfFundByBudgetPeriod,
  BdgtPerdAssociationIsInactive,
  FundFinMgmtAreaForAuthzn
FROM I_FundToBudgetPeriodBasic
LEFT OUTER JOIN I_Fund AS _Fund ON FinancialManagementArea = _Fund.FinancialManagementArea AND Fund = _Fund.Fund  -- association [0..1]
LEFT OUTER JOIN I_BudgetPeriod AS _BudgetPeriod ON BudgetPeriod = _BudgetPeriod.BudgetPeriod  -- association [0..1]
;