DEMO_SPFLI_PROJECTION_V1

DDL: DEMO_SPFLI_PROJECTION_V1 SQL: DEMO_SPFLI_PROJ Type: view

DEMO_SPFLI_PROJECTION_V1 is a CDS View in SAP S/4HANA. It reads from 1 data source (scarr) and exposes 3 fields with key field carrid.

Data Sources (1)

SourceAliasJoin Type
scarr scarr from

Parameters (2)

NameTypeDefault
p1 abap.int4
p2 abap.int4

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName DEMO_SPFLI_PROJ view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY carrid carrid Carrier
para1
para2

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 DEMO_SPFLI_PROJECTION_V1.
-- 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: DEMO_SPFLI_PROJ
-- Parameters: p1 : abap.int4, p2 : abap.int4

CREATE VIEW DEMO_SPFLI_PROJECTION_V1 AS
SELECT
  carrid,
  :p1 AS para1,
  $parameters.p2 AS para2
FROM scarr
;