SHSM_SHP_VIEW_GDRC

DDL: SHSM_SHP_VIEW_GDRC SQL: SHSMSHPVIEWGDRC Type: view

CDS-based Value Help Selection Method SHP_VIEW_GDRC

SHSM_SHP_VIEW_GDRC is a CDS View that provides data about "CDS-based Value Help Selection Method SHP_VIEW_GDRC" in SAP S/4HANA. It reads from 2 data sources (lfa1, shp_idx_gdrc) and exposes 9 fields with key field vbeln.

Data Sources (2)

SourceAliasJoin Type
lfa1 lfa1 left_outer
shp_idx_gdrc shp_idx_gdrc from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMSHPVIEWGDRC 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_GDRC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY vbeln shp_idx_gdrc vbeln SD Sched. Agmt
lfdat shp_idx_gdrc lfdat Delivery Date
vstel shp_idx_gdrc vstel ShpPtDeparture
traid shp_idx_gdrc traid Shipment ID
lifnr shp_idx_gdrc lifnr Vendor no.
lifex shp_idx_gdrc lifex Lifex
kostk shp_idx_gdrc kostk Picking Status
lvstk shp_idx_gdrc lvstk WM Activity Sts
begru

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_GDRC.
-- 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: SHSMSHPVIEWGDRC

CREATE VIEW SHSM_SHP_VIEW_GDRC AS
SELECT
  shp_idx_gdrc.vbeln AS vbeln,
  shp_idx_gdrc.lfdat AS lfdat,
  shp_idx_gdrc.vstel AS vstel,
  shp_idx_gdrc.traid AS traid,
  shp_idx_gdrc.lifnr AS lifnr,
  shp_idx_gdrc.lifex AS lifex,
  shp_idx_gdrc.kostk AS kostk,
  shp_idx_gdrc.lvstk AS lvstk,
  coalesce( lfa1.begru, '') AS begru
FROM shp_idx_gdrc
LEFT OUTER JOIN lfa1 ON /* join condition not captured in parsed metadata */
;