I_BusTransacTypeHierTxt
Business Transaction Type Hierarchy Text
I_BusTransacTypeHierTxt is a Basic CDS View that provides data about "Business Transaction Type Hierarchy Text" in SAP S/4HANA. It reads from 1 data source (hrrp_dirt_n) and exposes 6 fields with key fields BusTransacTypeHier, ValidityEndDate, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_dirt_n | hrrp_dirt_n | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Business Transaction Type Hierarchy Text | view | |
| ObjectModel.representativeKey | BusTransacTypeHier | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIBUSTRANTYPEHT | view | |
| AccessControl.authorizationCheck | #CHECK | 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 (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusTransacTypeHier | hrrp_dirt_n | hryid_42 | |
| KEY | ValidityEndDate | |||
| KEY | Language | spras | ||
| ValidityStartDate | ||||
| BusTransacTypeHierName | hrytxt | |||
| _Language | _Language |
@EndUserText.label: 'Business Transaction Type Hierarchy Text'
@ObjectModel.representativeKey: 'BusTransacTypeHier'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIBUSTRANTYPEHT'
@AccessControl.authorizationCheck: #CHECK
@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_BusTransacTypeHierTxt
as select from hrrp_dirt_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key hrrp_dirt_n.hryid_42 as BusTransacTypeHier,
@Semantics.businessDate.to: true
key cast(hrrp_dirt_n.hryvalto as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.language
key spras as Language,
@Semantics.businessDate.from: true
cast(hrrp_dirt_n.hryvalfrom as fis_datab preserving type ) as ValidityStartDate,
@Semantics.text
hrytxt as BusTransacTypeHierName,
_Language
}where
hrrp_dirt_n.hrytyp = 'GL03';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_DIRT_N"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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