Rsrts_Cds_Query_List

DDL: RSRTS_CDS_QUERY_LIST SQL: RSRTS_CDS_QRY Type: view

Rsrts_Cds_Query_List is a CDS View in SAP S/4HANA. It reads from 9 data sources and exposes 6 fields with key field compid.

Data Sources (9)

SourceAliasJoin Type
ARS_APIS_RELEASED_C1_OR_GROUPS ars_api_released inner
ddldependency dep_cube_stob inner
ddldependency dep_cube_view inner
ddldependency dep_stob inner
ddldependency dep_view inner
ddheadanno headanno inner
ddheadanno headannotext left_outer
Rsrts_Cds_Repdir repdir from
ddddlsrc02bt text left_outer

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName RSRTS_CDS_QRY view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY compid Rsrts_Cds_Repdir compid Query
infoprovider Rsrts_Cds_Repdir infocube InfoCube
ddlname ddldependency ddlname DDL Source Name
view_name ddldependency objectname Object name
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.
-- 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_QRY

CREATE VIEW Rsrts_Cds_Query_List AS
SELECT
  repdir.compid AS compid,
  repdir.infocube AS infoprovider,
  dep_view.ddlname AS ddlname,
  dep_stob.objectname AS view_name,
  dep_cube_view.ddlname AS cube_ddlname,
  text.ddtext AS description
FROM Rsrts_Cds_Repdir AS repdir
INNER JOIN ddldependency AS dep_view ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS dep_stob 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 ddheadanno AS headanno ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS dep_cube_view ON /* join condition not captured in parsed metadata */
INNER JOIN ddldependency AS dep_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 */
;