SHSM_SHP_VIEW_EXIB
CDS-based Value Help Selection Method SHP_VIEW_EXIB
SHSM_SHP_VIEW_EXIB is a CDS View that provides data about "CDS-based Value Help Selection Method SHP_VIEW_EXIB" in SAP S/4HANA. It reads from 3 data sources (lfa1, likp, shp_idx_exib) and exposes 6 fields with key fields lifex, vbeln.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| lfa1 | lfa1 | left_outer |
| likp | likp | inner |
| shp_idx_exib | shp_idx_exib | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SHSMSHPVIEWEXIB | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | CDS-based Value Help Selection Method SHP_VIEW_EXIB | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | lifex | shp_idx_exib | lifex | |
| KEY | vbeln | shp_idx_exib | vbeln | |
| lifnr | shp_idx_exib | lifnr | ||
| lfdat | shp_idx_exib | lfdat | ||
| begru | ||||
| vstel | likp | vstel |
@AbapCatalog.sqlViewName: 'SHSMSHPVIEWEXIB'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ClientHandling.algorithm : #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'CDS-based Value Help Selection Method SHP_VIEW_EXIB'
define view SHSM_SHP_VIEW_EXIB
as select from shp_idx_exib
left outer join lfa1 on shp_idx_exib.lifnr = lfa1.lifnr //n_3036930
inner join likp on shp_idx_exib.vbeln = likp.vbeln
{
key shp_idx_exib.lifex,
key shp_idx_exib.vbeln,
shp_idx_exib.lifnr,
shp_idx_exib.lfdat,
@Consumption.hidden:true
coalesce( lfa1.begru, '') as begru, //n_3036930
@Consumption.hidden:true
likp.vstel
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LFA1",
"LIKP",
"SHP_IDX_EXIB"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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