Rsrts_Cds_Query_List_Sources

DDL: RSRTS_CDS_QUERY_LIST_SOURCES SQL: RSRTS_CDS_QSRS Type: view

Released CDS based Query Sources

Rsrts_Cds_Query_List_Sources is a CDS View that provides data about "Released CDS based Query Sources" in SAP S/4HANA. It reads from 11 data sources and exposes 6 fields with key field compid.

Data Sources (11)

SourceAliasJoin Type
RSRTS_APP_COMPONENT akh inner
ARS_APIS_RELEASED_C1_OR_GROUPS ars_api_released inner
ddldependency cube_stob inner
ddldependency cube_view inner
dd2526v dd2526v inner
ddldependency dep_stob inner
ddldependency dep_view inner
ddheadanno headanno from
ddheadanno headannotext left_outer
tadir tadir inner
ddddlsrc02bt text left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName RSRTS_CDS_QSRS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Released CDS based Query Sources view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY compid
infoprovider
ddlname ddldependency ddlname DDL Source Name
view_name ddheadanno strucobjn DD: Name of a structured object (e.g. entity, context)
cube_ddlname ddldependency ddlname DDL Source Name
description ddddlsrc02bt ddtext Short text

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 Rsrts_Cds_Query_List_Sources.
-- 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: RSRTS_CDS_QSRS

CREATE VIEW Rsrts_Cds_Query_List_Sources AS
SELECT
  concat( '2C', dep_view.objectname ) AS compid,
  concat( '2C', dd2526v.tabname ) AS infoprovider,
  dep_stob.ddlname AS ddlname,
  headanno.strucobjn AS view_name,
  cube_view.ddlname AS cube_ddlname,
  text.ddtext AS description
FROM ddheadanno AS headanno
INNER JOIN ddldependency AS dep_stob ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS dep_view ON /* join condition not captured in parsed metadata */
INNER JOIN ARS_APIS_RELEASED_C1_OR_GROUPS AS ars_api_released ON /* join condition not captured in parsed metadata */
INNER JOIN dd2526v ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS cube_view ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS cube_stob ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ddheadanno AS headannotext ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ddddlsrc02bt AS text ON /* join condition not captured in parsed metadata */
INNER JOIN tadir ON /* join condition not captured in parsed metadata */
INNER JOIN RSRTS_APP_COMPONENT AS akh ON /* join condition not captured in parsed metadata */
;