P_Matrix_Hier_Leaf
P_Matrix_Hier_Leaf is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (hrrp_node) and exposes 6 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_node | leaf | from |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_Hierarchy | hryid | |
| P_KeyDate | datbi |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PHIERL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| hryid | hryid | |||
| hryver | hryver | |||
| nodecls | nodecls | |||
| hrynode | hrynode | |||
| hryvalto | hryvalto | |||
| hryvalfrom | hryvalfrom |
@AbapCatalog.sqlViewName: 'PHIERL'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@ClientHandling.algorithm:#SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
define view P_Matrix_Hier_Leaf
with parameters
P_Hierarchy : hryid,
P_KeyDate : datbi
as select from hrrp_node as leaf
{
hryid,
hryver,
nodecls,
hrynode,
hryvalto,
hryvalfrom
} where
hryid = $parameters.P_Hierarchy and
nodetype = 'L' and
hryvalfrom <= $parameters.P_KeyDate and
hryvalto >= $parameters.P_KeyDate
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_NODE"
],
"ASSOCIATED":
[],
"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