A_BudgetPeriodCoreText

DDL: A_BUDGETPERIODCORETEXT Type: view_entity COMPOSITE

Budget Period Text

A_BudgetPeriodCoreText is a Composite CDS View that provides data about "Budget Period Text" in SAP S/4HANA. It reads from 1 data source (R_BudgetPeriodCoreTextTP) and exposes 3 fields with key fields Language, BudgetPeriod.

Data Sources (1)

SourceAliasJoin Type
R_BudgetPeriodCoreTextTP R_BudgetPeriodCoreTextTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
OData.entityType.name BudgetPeriodCoreText_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Budget Period Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY BudgetPeriod BudgetPeriod Budget Period
BudgetPeriodName BudgetPeriodName Long 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_BudgetPeriodCoreText.
-- 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_BudgetPeriodCoreText AS
SELECT
  Language,
  BudgetPeriod,
  BudgetPeriodName
FROM R_BudgetPeriodCoreTextTP
;