I_PubSecInterestAccountVH
Interest Accounts
I_PubSecInterestAccountVH is a Composite CDS View that provides data about "Interest Accounts" in SAP S/4HANA. It reads from 1 data source (I_GLAccountForPublicSector) and exposes 6 fields with key fields ChartOfAccounts, GLAccount. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountForPublicSector | I_GLAccountForPublicSector | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PubSecBdgtCnsmpnTypeText | _BudgetConsumptionTypeText | $projection.PubSecBudgetCnsmpnType = _BudgetConsumptionTypeText.PubSecBudgetCnsmpnType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPSMINTRSTACTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Interest Accounts | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | GLAccount | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChartOfAccounts | ChartOfAccounts | ||
| KEY | GLAccount | GLAccount | ||
| PubSecBudgetCnsmpnType | PubSecBudgetCnsmpnType | |||
| _Text | _Text | |||
| _BudgetConsumptionTypeText | _BudgetConsumptionTypeText | |||
| _ChartOfAccounts | _ChartOfAccounts |
@AbapCatalog.sqlViewName: 'IPSMINTRSTACTVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Interest Accounts'
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'GLAccount'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_PubSecInterestAccountVH
as select from I_GLAccountForPublicSector
association [0..*] to I_PubSecBdgtCnsmpnTypeText as _BudgetConsumptionTypeText on $projection.PubSecBudgetCnsmpnType = _BudgetConsumptionTypeText.PubSecBudgetCnsmpnType
{
@ObjectModel.foreignKey.association: '_ChartOfAccounts'
key ChartOfAccounts,
@ObjectModel.text.association: '_Text'
//@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key GLAccount,
@ObjectModel.text.association: '_BudgetConsumptionTypeText'
PubSecBudgetCnsmpnType,
//_BudgetConsumptionTypeText[1:Language = $session.system_language].PubSecBudgetCnsmpnTypeText,
_Text,
_BudgetConsumptionTypeText,
@Consumption.hidden: true
_ChartOfAccounts
}
where
PubSecBudgetCnsmpnType = '99'
and ChartOfAccounts = 'YCOA'
and PubSecBdgtAcctIsPostgAllowed = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTFORPUBLICSECTOR"
],
"ASSOCIATED":
[
"I_CHARTOFACCOUNTS",
"I_GLACCOUNTTEXT",
"I_PUBSECBDGTCNSMPNTYPETEXT"
],
"BASE":
[
"I_GLACCOUNTFORPUBLICSECTOR"
],
"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