I_ReferencePointVH

DDL: I_REFERENCEPOINTVH SQL: IREFERENCEPVH Type: view BASIC

Reference Point Value Help

I_ReferencePointVH is a Basic CDS View that provides data about "Reference Point Value Help" in SAP S/4HANA. It reads from 2 data sources (tcnrfp, tcnrfpt) and exposes 2 fields with key field ReferencePoint.

Data Sources (2)

SourceAliasJoin Type
tcnrfp ReferencePoint from
tcnrfpt ReferencePointDescription inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IREFERENCEPVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Reference Point Value Help view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReferencePoint tcnrfp rfpnt
ReferencePointDescription ktext
@AbapCatalog.sqlViewName: 'IREFERENCEPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType:#BASIC
@ObjectModel.usageType: {serviceQuality: #B ,sizeCategory: #XL , dataClass : #CUSTOMIZING}
@EndUserText.label: 'Reference Point Value Help'
define view I_ReferencePointVH 
as select from tcnrfp as ReferencePoint
inner join tcnrfpt as ReferencePointDescription
on ReferencePoint.rfpnt = ReferencePointDescription.rfpnt {
@Search.defaultSearchElement: true
key ReferencePoint.rfpnt as ReferencePoint,
@Semantics.text: true
    ktext as ReferencePointDescription 
}where ReferencePointDescription.spras =  $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCNRFP",
"TCNRFPT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/