SUSG_I_RDATA

DDL: SUSG_I_RDATA SQL: SUSG_V_RDATA Type: view

Usage Data: Data View

SUSG_I_RDATA is a CDS View that provides data about "Usage Data: Data View" in SAP S/4HANA. It reads from 4 data sources (susg_admin, susg_rdata, susg_sub, susg_sub) and exposes 7 fields.

Data Sources (4)

SourceAliasJoin Type
susg_admin a inner
susg_rdata r from
susg_sub s1 inner
susg_sub s2 inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SUSG_V_RDATA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Usage Data: Data View view

Fields (7)

KeyFieldSource TableSource FieldDescription
usgid susg_admin usgid Usage ID
roottype1 susg_sub roottype Request Type
rootname1 susg_sub rootname Root Entity Name
roottype2 susg_sub roottype Request Type
rootname2 susg_sub rootname Root Entity Name
counter susg_rdata counter Version
last_used susg_rdata last_used Time Stamp

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 SUSG_I_RDATA.
-- 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: SUSG_V_RDATA

CREATE VIEW SUSG_I_RDATA AS
SELECT
  a.usgid AS usgid,
  s1.roottype AS roottype1,
  s1.rootname AS rootname1,
  s2.roottype AS roottype2,
  s2.rootname AS rootname2,
  r.counter AS counter,
  r.last_used AS last_used
FROM susg_rdata AS r
INNER JOIN susg_sub AS s1 ON /* join condition not captured in parsed metadata */
INNER JOIN susg_sub AS s2 ON /* join condition not captured in parsed metadata */
INNER JOIN susg_admin AS a ON /* join condition not captured in parsed metadata */
;