I_BusTransacTypeHier
Business Transaction Type Hierarchy
I_BusTransacTypeHier is a Basic CDS View (Dimension) that provides data about "Business Transaction Type Hierarchy" in SAP S/4HANA. It reads from 1 data source (hrrp_dir_n) and exposes 8 fields with key fields BusTransacTypeHier, ValidityEndDate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_dir_n | hrrp_dir_n | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_BusTransacTypeHierTxt | _Text | $projection.BusTransacTypeHier = _Text.BusTransacTypeHier and $projection.ValidityEndDate = _Text.ValidityEndDate |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Business Transaction Type Hierarchy | view | |
| ObjectModel.representativeKey | BusTransacTypeHier | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIBUSTRANTYPEH | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusTransacTypeHier | hrrp_dir_n | hryid_42 | |
| KEY | ValidityEndDate | |||
| ValidityStartDate | ||||
| LastChangedByUser | hrrp_dir_n | upduser | ||
| LastChangeDateTime | hrrp_dir_n | updtime | ||
| LastChangeTime | hrrp_dir_n | updtime | ||
| HierarchyShortID | hrrp_dir_n | hrysid | ||
| _Text | _Text |
@EndUserText.label: 'Business Transaction Type Hierarchy'
@ObjectModel.representativeKey: 'BusTransacTypeHier' //Inserted by VDM CDS Suite Plugin
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIBUSTRANTYPEH'
@AccessControl.authorizationCheck: #CHECK
@Metadata.allowExtensions:true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #XL
}
define view I_BusTransacTypeHier
as select from hrrp_dir_n
association [1..*] to I_BusTransacTypeHierTxt as _Text on $projection.BusTransacTypeHier = _Text.BusTransacTypeHier
and $projection.ValidityEndDate = _Text.ValidityEndDate
{
@ObjectModel.text.association: '_Text'
key hrrp_dir_n.hryid_42 as BusTransacTypeHier,
@Semantics.businessDate.to: true
key cast(hrrp_dir_n.hryvalto as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.businessDate.from: true
cast(hrrp_dir_n.hryvalfrom as fis_datab preserving type ) as ValidityStartDate,
@Semantics.user.lastChangedBy: true
hrrp_dir_n.upduser as LastChangedByUser,
@Semantics.systemDateTime.lastChangedAt: true
hrrp_dir_n.updtime as LastChangeDateTime,
@API.element.releaseState: #DEPRECATED
@API.element.successor: 'LastChangeDateTime'
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'LastChangeDateTime'
hrrp_dir_n.updtime as LastChangeTime,
hrrp_dir_n.hrysid as HierarchyShortID,
_Text
}
where
hrytyp = 'GL03';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_DIR_N"
],
"ASSOCIATED":
[
"I_BUSTRANSACTYPEHIERTXT"
],
"BASE":
[],
"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