R_BudgetPeriodTP
Manage Budget Period - TP
R_BudgetPeriodTP is a Transactional CDS View that provides data about "Manage Budget Period - TP" in SAP S/4HANA. It reads from 1 data source (I_BudgetPeriod) and exposes 13 fields with key field BudgetPeriod. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BudgetPeriod | ibudgetpd | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | E_BudgetPeriod | _Extension | $projection.BudgetPeriod = _Extension.BudgetPeriod |
| [0..1] | I_User | _user_created | $projection.CreatedByUser = _user_created.UserID |
| [0..1] | I_User | _user_changed | $projection.LastChangedByUser = _user_changed.UserID |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Manage Budget Period - TP | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BudgetPeriod | I_BudgetPeriod | BudgetPeriod | |
| ValidityStartDate | I_BudgetPeriod | ValidityStartDate | ||
| ValidityEndDate | I_BudgetPeriod | ValidityEndDate | ||
| BudgetPeriodExpirationDate | I_BudgetPeriod | BudgetPeriodExpirationDate | ||
| BudgetPeriodReversalDate | I_BudgetPeriod | BudgetPeriodReversalDate | ||
| BudgetPeriodAuthznGrp | I_BudgetPeriod | BudgetPeriodAuthznGrp | ||
| CreatedByUser | I_BudgetPeriod | CreatedByUser | ||
| CreationDate | I_BudgetPeriod | CreationDate | ||
| LastChangedByUser | I_BudgetPeriod | LastChangeUser | ||
| LastChangeDate | I_BudgetPeriod | LastChangeDate | ||
| BudgetPeriodPeriodicity | I_BudgetPeriod | BudgetPeriodPeriodicity | ||
| _FundPeriodicity | I_BudgetPeriod | _FundPeriodicity | ||
| BudgetPeriodName |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Manage Budget Period - TP'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
define root view entity R_BudgetPeriodTP as select from I_BudgetPeriod as ibudgetpd
association [0..1] to E_BudgetPeriod as _Extension on $projection.BudgetPeriod = _Extension.BudgetPeriod
association [0..1] to I_User as _user_created on $projection.CreatedByUser = _user_created.UserID
association [0..1] to I_User as _user_changed on $projection.LastChangedByUser = _user_changed.UserID
{
key ibudgetpd.BudgetPeriod,
@Semantics.businessDate.from: true
ibudgetpd.ValidityStartDate,
@Semantics.businessDate.to: true
ibudgetpd.ValidityEndDate,
ibudgetpd.BudgetPeriodExpirationDate,
ibudgetpd.BudgetPeriodReversalDate,
ibudgetpd.BudgetPeriodAuthznGrp,
@Semantics.user.createdBy: true
ibudgetpd.CreatedByUser,
cast(
case
when _user_created.UserDescription is initial
then CreatedByUser
else _user_created.UserDescription
end as fmis_bpcreatedbyuserdescr preserving type ) as BdgtPerdCrtedByUsrDesc,
ibudgetpd.CreationDate,
@Semantics.user.lastChangedBy: true
ibudgetpd.LastChangeUser as LastChangedByUser,
cast(
case
when _user_changed.UserDescription is initial
then LastChangeUser
else _user_changed.UserDescription
end as fmis_bplastchnguserdescription preserving type ) as BdgtPerdLastChgdByUsrDesc,
@Semantics.systemDate.lastChangedAt: true
ibudgetpd.LastChangeDate,
ibudgetpd.BudgetPeriodPeriodicity,
ibudgetpd._FundPeriodicity,
ibudgetpd._Text[1:Language = $session.system_language].BudgetPeriodName as BudgetPeriodName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUDGETPERIOD",
"I_BUDGETPERIODTEXT",
"I_USER"
],
"ASSOCIATED":
[
"I_FUNDPERIODICITY"
],
"BASE":
[
"I_BUDGETPERIOD"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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