P_CnsldtnHierDir

DDL: P_CNSLDTNHIERDIR SQL: PCNSLDTNHRDIR Type: view BASIC

P_CnsldtnHierDir is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (hrrp_directory) and exposes 5 fields with key field AdditionalMasterDataHierarchy.

Data Sources (1)

SourceAliasJoin Type
hrrp_directory hrrp_directory from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCNSLDTNHRDIR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AdditionalMasterDataHierarchy view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.private true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataHierarchy
ValidityEndDate
ValidityStartDate
LastChangedByUser upduser
LastChangeDateTime updtime
@AbapCatalog.sqlViewName: 'PCNSLDTNHRDIR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AdditionalMasterDataHierarchy'
@ObjectModel.usageType: { dataClass: #MASTER, sizeCategory: #S, serviceQuality: #A }
@VDM.private: true
@VDM.viewType: #BASIC
define view P_CnsldtnHierDir
  as select from hrrp_directory 
{
  key cast(hryid as fincs_hryid)       as AdditionalMasterDataHierarchy,
  
  @Semantics.businessDate.to: true
  cast(hryvalto as fis_datbi)          as ValidityEndDate,
  
  @Semantics.businessDate.from: true
  cast(hryvalfrom as fis_datab)        as ValidityStartDate,
  
  @Semantics.user.lastChangedBy: true
  upduser                              as LastChangedByUser,
  
  @Semantics.systemDateTime.lastChangedAt: true
  updtime                              as LastChangeDateTime

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_DIRECTORY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/