SUSG_I_ODATA

DDL: SUSG_I_ODATA SQL: SUSG_V_ODATA Type: view

Usage Data: Data View

SUSG_I_ODATA 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_prog, susg_odata, susg_sub) and exposes 8 fields.

Data Sources (4)

SourceAliasJoin Type
susg_admin a inner
susg_prog g inner
susg_odata o from
susg_sub s inner

Annotations (4)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
usgid susg_admin usgid Usage ID
roottype susg_sub roottype Request Type
rootname susg_sub rootname Root Entity Name
progname susg_prog progname Tcode/program
obj_type susg_prog obj_type Type
obj_name susg_prog obj_name Object Name
counter susg_odata counter Version
last_used susg_odata 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_ODATA.
-- 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_ODATA

CREATE VIEW SUSG_I_ODATA AS
SELECT
  a.usgid AS usgid,
  s.roottype AS roottype,
  s.rootname AS rootname,
  g.progname AS progname,
  g.obj_type AS obj_type,
  g.obj_name AS obj_name,
  o.counter AS counter,
  o.last_used AS last_used
FROM susg_odata AS o
INNER JOIN susg_sub AS s ON /* join condition not captured in parsed metadata */
INNER JOIN susg_prog AS g ON /* join condition not captured in parsed metadata */
INNER JOIN susg_admin AS a ON /* join condition not captured in parsed metadata */
;