ars_demo_cdsviews_same_group

DDL: ARS_DEMO_CDSVIEWS_SAME_GROUP SQL: ARS_DEMO_CDS_GR Type: view

Demo: CDS Views Released for Same Group

ars_demo_cdsviews_same_group is a CDS View that provides data about "Demo: CDS Views Released for Same Group" in SAP S/4HANA. It reads from 4 data sources (ars_apis_released_for_group, ars_apis_released_for_group, ddddlsrc, ddldependency) and exposes 1 field.

Data Sources (4)

SourceAliasJoin Type
ars_apis_released_for_group api_source inner
ars_apis_released_for_group api_target inner
ddddlsrc ddls inner
ddldependency stob from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ARS_DEMO_CDS_GR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Demo: CDS Views Released for Same Group view

Fields (1)

KeyFieldSource TableSource FieldDescription
cds_view ars_apis_released_for_group object_key UUID

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 ars_demo_cdsviews_same_group.
-- 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: ARS_DEMO_CDS_GR

CREATE VIEW ars_demo_cdsviews_same_group AS
SELECT
  api_source.object_key AS cds_view
FROM ddldependency AS stob
INNER JOIN ddddlsrc AS ddls ON /* join condition not captured in parsed metadata */
INNER JOIN ars_apis_released_for_group AS api_source ON /* join condition not captured in parsed metadata */
INNER JOIN ars_apis_released_for_group AS api_target ON /* join condition not captured in parsed metadata */
;