SHSM_SHP_VIEW_EXIB

DDL: SHSM_SHP_VIEW_EXIB SQL: SHSMSHPVIEWEXIB Type: view

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)

SourceAliasJoin Type
lfa1 lfa1 left_outer
likp likp inner
shp_idx_exib shp_idx_exib from

Annotations (11)

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

KeyFieldSource TableSource FieldDescription
KEY lifex shp_idx_exib lifex Lifex
KEY vbeln shp_idx_exib vbeln SD Sched. Agmt
lifnr shp_idx_exib lifnr Vendor no.
lfdat shp_idx_exib lfdat Delivery Date
begru
vstel likp vstel ShpPtDeparture

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view SHSM_SHP_VIEW_EXIB.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: SHSMSHPVIEWEXIB

CREATE VIEW SHSM_SHP_VIEW_EXIB AS
SELECT
  shp_idx_exib.lifex AS lifex,
  shp_idx_exib.vbeln AS vbeln,
  shp_idx_exib.lifnr AS lifnr,
  shp_idx_exib.lfdat AS lfdat,
  coalesce( lfa1.begru, '') AS begru,
  likp.vstel AS vstel
FROM shp_idx_exib
LEFT OUTER JOIN lfa1 ON /* join condition not captured in parsed metadata */
INNER JOIN likp ON /* join condition not captured in parsed metadata */
;