I_CnsldtnMatlGrpHierDirT
Consolidation - Material Group Hierarchy Directory Text
I_CnsldtnMatlGrpHierDirT is a Basic CDS View that provides data about "Consolidation - Material Group Hierarchy Directory Text" in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnMatlGrpHierDir, hrrp_directoryt) and exposes 4 fields with key fields Language, AdditionalMasterDataHierarchy. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnMatlGrpHierDir | _Directory | inner |
| hrrp_directoryt | _HierarchyDirectoryText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSMATGRPHDT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Consolidation - Material Group Hierarchy Directory Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | AdditionalMasterDataHierarchy | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | hrrp_directoryt | spras | |
| KEY | AdditionalMasterDataHierarchy | hrrp_directoryt | hryid | |
| AdditionalMasterDataHierText | hrrp_directoryt | hrytxt | ||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ICSMATGRPHDT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Consolidation - Material Group Hierarchy Directory Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AdditionalMasterDataHierarchy'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M
}
define view I_CnsldtnMatlGrpHierDirT
as select from hrrp_directoryt as _HierarchyDirectoryText
inner join I_CnsldtnMatlGrpHierDir as _Directory on _Directory.AdditionalMasterDataHierarchy = _HierarchyDirectoryText.hryid
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key _HierarchyDirectoryText.spras as Language,
key _HierarchyDirectoryText.hryid as AdditionalMasterDataHierarchy,
@Semantics.text: true
_HierarchyDirectoryText.hrytxt as AdditionalMasterDataHierText,
// associations
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNMATLGRPHIERDIR",
"HRRP_DIRECTORYT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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