EWIK_CDS

DDL: DDL_EWIK SQL: H_EWIK_CDS Type: view

EWIK_CDS is a CDS View in SAP S/4HANA. It reads from 2 data sources (dd07t, t002) and exposes 6 fields.

Data Sources (2)

SourceAliasJoin Type
dd07t dd07t left_outer
t002 t002 inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName H_EWIK_CDS view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (6)

KeyFieldSource TableSource FieldDescription
SUCHBEG ewik suchbeg Search term
WGRUPPE ewik wgruppe Winding group
WANDART ewik wandart
WNUMMER ewik wnummer
spras t002 spras Off. Language
WANDARTTXT dd07t ddtext Short text

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 EWIK_CDS.
-- 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: H_EWIK_CDS

CREATE VIEW EWIK_CDS AS
SELECT
  ewik.suchbeg AS SUCHBEG,
  ewik.wgruppe AS WGRUPPE,
  ewik.wandart AS WANDART,
  ewik.wnummer AS WNUMMER,
  t002.spras AS spras,
  dd07t.ddtext AS WANDARTTXT
INNER JOIN t002 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd07t ON /* join condition not captured in parsed metadata */
;