nlq_cds_graph_edges

DDL: NLQ_CDS_GRAPH_EDGES SQL: ESH_NLQ_EDGES Type: view

Graph Edges

nlq_cds_graph_edges is a CDS View that provides data about "Graph Edges" in SAP S/4HANA. It reads from 1 data source (esh_nlq_gr_edges) and exposes 6 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
esh_nlq_gr_edges esh_nlq_gr_edges from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ESH_NLQ_EDGES view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Graph Edges view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
source source ViolationSource
target target TargetSys
ner ner NLQ NER
weight weight Weight Used
view_name view_name View Name

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 nlq_cds_graph_edges.
-- 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: ESH_NLQ_EDGES

CREATE VIEW nlq_cds_graph_edges AS
SELECT
  id,
  source,
  target,
  ner,
  weight,
  view_name
FROM esh_nlq_gr_edges
;