I_BankAccountUniversalHier
Bank Account Universal Hierarchy
I_BankAccountUniversalHier is a Basic CDS View (Dimension) that provides data about "Bank Account Universal Hierarchy" in SAP S/4HANA. It reads from 1 data source (hrrp_directory) and exposes 8 fields with key fields BankAccountHierarchy, ValidityEndDate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_directory | Hierarchy | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_BankAccountUniversalHierText | _Text | $projection.BankAccountHierarchy = _Text.BankAccountHierarchy and $projection.ValidityEndDate = _Text.ValidityEndDate |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.representativeKey | BankAccountHierarchy | view | |
| AbapCatalog.sqlViewName | IBANKACCTUH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Bank Account Universal Hierarchy | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Metadata.allowExtensions | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountHierarchy | hrrp_directory | hryid | |
| KEY | ValidityEndDate | hrrp_directory | hryvalto | |
| ValidityStartDate | hrrp_directory | hryvalfrom | ||
| HierarchyType | hrrp_directory | hrytyp | ||
| IsPublicHierarchy | ||||
| LastChangedByUser | hrrp_directory | upduser | ||
| LastChangeTime | hrrp_directory | updtime | ||
| _Text | _Text |
@ObjectModel.representativeKey: 'BankAccountHierarchy'
@AbapCatalog.sqlViewName: 'IBANKACCTUH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Bank Account Universal Hierarchy'
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M
}
@Metadata.allowExtensions:true
define view I_BankAccountUniversalHier as select from hrrp_directory as Hierarchy
association [1..*] to I_BankAccountUniversalHierText as _Text on $projection.BankAccountHierarchy = _Text.BankAccountHierarchy
and $projection.ValidityEndDate = _Text.ValidityEndDate
{
@ObjectModel.text.association: '_Text'
key Hierarchy.hryid as BankAccountHierarchy,
@Semantics.businessDate.to: true
key Hierarchy.hryvalto as ValidityEndDate,
@Semantics.businessDate.from: true
Hierarchy.hryvalfrom as ValidityStartDate,
Hierarchy.hrytyp as HierarchyType,
@Consumption.hidden: true
'X' as IsPublicHierarchy,
@Semantics.user.lastChangedBy: true
Hierarchy.upduser as LastChangedByUser,
@Semantics.systemDate.lastChangedAt: true
Hierarchy.updtime as LastChangeTime,
_Text
}
where hrytyp = 'CM01';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_DIRECTORY"
],
"ASSOCIATED":
[
"I_BANKACCOUNTUNIVERSALHIERTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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