A_BudgetPeriod

DDL: A_BUDGETPERIOD Type: view_entity COMPOSITE

Budget Period

A_BudgetPeriod is a Composite CDS View that provides data about "Budget Period" in SAP S/4HANA. It reads from 1 data source (R_BudgetPeriodTP) and exposes 11 fields with key field BudgetPeriod. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_BudgetPeriodTP R_BudgetPeriodTP projection

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_BudgetPeriodText _Text $projection.BudgetPeriod = _Text.BudgetPeriod

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Budget Period view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
OData.entityType.name BudgetPeriod_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BudgetPeriod BudgetPeriod Budget Period
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
BudgetPeriodExpirationDate BudgetPeriodExpirationDate
BudgetPeriodReversalDate BudgetPeriodReversalDate
BudgetPeriodAuthznGrp BudgetPeriodAuthznGrp
CreationDate CreationDate Time Stamp
LastChangeDate LastChangeDate Time Stamp
BudgetPeriodPeriodicity BudgetPeriodPeriodicity
BudgetPeriodName BudgetPeriodName Long Text
_Text _Text

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 A_BudgetPeriod.
-- 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.

CREATE VIEW A_BudgetPeriod AS
SELECT
  BudgetPeriod,
  ValidityStartDate,
  ValidityEndDate,
  BudgetPeriodExpirationDate,
  BudgetPeriodReversalDate,
  BudgetPeriodAuthznGrp,
  CreationDate,
  LastChangeDate,
  BudgetPeriodPeriodicity,
  BudgetPeriodName
FROM R_BudgetPeriodTP
LEFT OUTER JOIN A_BudgetPeriodText AS _Text ON BudgetPeriod = _Text.BudgetPeriod  -- association [0..*]
;