I_ReferencePointVH
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. Part of development package CS_MODEL.
Data Sources (2)
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | 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 |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@VDM.viewType:#BASIC
@ObjectModel.usageType: {serviceQuality: #B ,sizeCategory: #XL , dataClass : #CUSTOMIZING}
@EndUserText.label: 'Reference Point Value Help'
define view entity 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
ReferencePointDescription.ktext as ReferencePointDescription
}where ReferencePointDescription.spras = $session.system_language
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