DEMO_CDS_TIMEZONE_FUNC_VE

DDL: DEMO_CDS_TIMEZONE_FUNC_VE Type: view_entity

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

Data Sources (1)

SourceAliasJoin Type
demo_expressions demo_expressions from

Annotations (1)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
system_tz
user_tz

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_TIMEZONE_FUNC_VE.
-- 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_TIMEZONE_FUNC_VE AS
SELECT
  id,
  abap_system_timezone( $session.client,'NULL' ) AS system_tz,
  abap_user_timezone( $session.user,$session.client,'NULL' ) AS user_tz
FROM demo_expressions
;