I_BankAccountUniversalHier

DDL: I_BANKACCOUNTUNIVERSALHIER SQL: IBANKACCTUH Type: view BASIC

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)

SourceAliasJoin Type
hrrp_directory Hierarchy from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_BankAccountUniversalHierText _Text $projection.BankAccountHierarchy = _Text.BankAccountHierarchy and $projection.ValidityEndDate = _Text.ValidityEndDate

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/