DEMO_CDS_GET_NUMERIC_VALUE

DDL: DEMO_CDS_GET_NUMERIC_VALUE Type: view_entity

CDS view entity, GET_NUMERIC_VALUE

DEMO_CDS_GET_NUMERIC_VALUE is a CDS View that provides data about "CDS view entity, GET_NUMERIC_VALUE" in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 6 fields with key fields carrid, connid, fldate.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view entity, GET_NUMERIC_VALUE view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY carrid carrid Carrier
KEY connid connid Flight Number
KEY fldate fldate Flight Date
price price RVP f.PricePro.
currency currency Valuation Crcy
paymentsum paymentsum Total

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_CDS_GET_NUMERIC_VALUE.
-- 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.

CREATE VIEW DEMO_CDS_GET_NUMERIC_VALUE AS
SELECT
  carrid,
  connid,
  fldate,
  price,
  currency,
  paymentsum
FROM sflight
;