SADL_V_EXPOSURE

DDL: SADL_V_EXPOSURE SQL: SADL_V_EXP Type: view

SADL_V_EXPOSURE is a CDS View in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 3 fields with key fields Carrier, Connectn.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_EXP view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Carrier carrid Carrier
KEY Connectn connid Flight Number
Seats sflight seatsmax Max. Seats

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 SADL_V_EXPOSURE.
-- 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: SADL_V_EXP

CREATE VIEW SADL_V_EXPOSURE AS
SELECT
  carrid AS Carrier,
  connid AS Connectn,
  sflight.seatsmax AS Seats
FROM sflight
;