P_Matrix_Hier_Leaf

DDL: P_MATRIX_HIER_LEAF SQL: PHIERL Type: view COMPOSITE

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)

SourceAliasJoin Type
hrrp_node leaf from

Parameters (2)

NameTypeDefault
P_Hierarchy hryid
P_KeyDate datbi

Annotations (11)

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

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