mwk_flights

DDL: MWK_SFLIGHT_TEST SQL: MWK_SFLIGHT Type: view

mwk_flights is a CDS View in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 1 field.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName MWK_SFLIGHT view

Fields (1)

KeyFieldSource TableSource FieldDescription
carrier carrid Carrier

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 mwk_flights.
-- 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: MWK_SFLIGHT

CREATE VIEW mwk_flights AS
SELECT
  carrid AS carrier
FROM sflight
;