Spak_Cls_Ddl_Test_View

DDL: SPAK_CLS_DDL_TEST_VIEW SQL: SPAK_CLS_DDLTEST Type: view

View used by unit tests

Spak_Cls_Ddl_Test_View is a CDS View that provides data about "View used by unit tests" in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName SPAK_CLS_DDLTEST view
EndUserText.label View used by unit tests view

Fields (3)

KeyFieldSource TableSource FieldDescription
carrid sflight carrid Carrier
connid sflight connid Flight Number
fldate sflight fldate Flight Date

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 Spak_Cls_Ddl_Test_View.
-- 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: SPAK_CLS_DDLTEST

CREATE VIEW Spak_Cls_Ddl_Test_View AS
SELECT
  sflight.carrid AS carrid,
  sflight.connid AS connid,
  sflight.fldate AS fldate
FROM sflight
;