RSODP_ABAP_CDS_f4_all_p2

DDL: RSODP_ABAP_CDS_F4_ALL_P2 SQL: RSODPABAPCDSF4A2 Type: view

ABAP CDS value help 2

RSODP_ABAP_CDS_f4_all_p2 is a CDS View that provides data about "ABAP CDS value help 2" in SAP S/4HANA. It reads from 6 data sources and exposes 8 fields with key field viewname.

Data Sources (6)

SourceAliasJoin Type
ddldependency t0 from
ddldependency t1 inner
ddheadanno t2 inner
tadir t4 left_outer
ddheadanno t5 left_outer
ddheadanno t6 left_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName RSODPABAPCDSF4A2 view
ClientHandling.type #CLIENT_INDEPENDENT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #SINGLE view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label ABAP CDS value help 2 view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY viewname ddldependency objectname Object name
ddlname ddldependency ddlname DDL Source Name
strucobjn ddldependency objectname Object name
datacategory
devclass tadir devclass Package (Obsolete)
hidden
query
_text _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 RSODP_ABAP_CDS_f4_all_p2.
-- 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: RSODPABAPCDSF4A2

CREATE VIEW RSODP_ABAP_CDS_f4_all_p2 AS
SELECT
  t0.objectname AS viewname,
  t0.ddlname AS ddlname,
  t1.objectname AS strucobjn,
  cast( left( t2.value, 255 ) as char255 ) AS datacategory,
  t4.devclass AS devclass,
  cast( left( t5.value, 255 ) as char255 ) AS hidden,
  cast( left( t6.value, 255 ) as char255 ) AS query
FROM ddldependency AS t0
INNER JOIN ddldependency AS t1 ON /* join condition not captured in parsed metadata */
INNER JOIN ddheadanno AS t2 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tadir AS t4 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ddheadanno AS t5 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ddheadanno AS t6 ON /* join condition not captured in parsed metadata */
;