/SSB/VIEW_RECOMMENDATION

DDL: /SSB/VIEW_RECOMMENDATION SQL: /SSB/RECENTVIEW Type: view

Expose recent view for recommendation

/SSB/VIEW_RECOMMENDATION is a CDS View that provides data about "Expose recent view for recommendation" in SAP S/4HANA. It reads from 2 data sources (/SSB/ALL_VIEW_NAMES, tadir) and exposes 10 fields with key field DDLSourceName.

Data Sources (2)

SourceAliasJoin Type
/SSB/ALL_VIEW_NAMES AllViews from
tadir tadir inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/RECENTVIEW view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Expose recent view for recommendation view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName /SSB/ALL_VIEW_NAMES DDLSourceName DDL Source Name
ViewName dd02b strucobjn_raw DD: Original Name of a Struct. Obj. (e.g. Entity, Context)
SQLViewName /SSB/ALL_VIEW_NAMES SQLViewName View Name
SourceType /SSB/ALL_VIEW_NAMES SourceType Source Type
IsAnalyticalQuery AnalyticalQuery value Value from table
IsOdataPublished ddhead value Value from table
CreatedBy /SSB/ALL_VIEW_NAMES CreatedBy User Name
CreationDate /SSB/ALL_VIEW_NAMES CreationDate Time Stamp
CreationTime /SSB/ALL_VIEW_NAMES CreationTime Time of Change
ReleaseState released_cds_views state Vehicle Region

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 /SSB/VIEW_RECOMMENDATION.
-- 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: /SSB/RECENTVIEW

CREATE VIEW /SSB/VIEW_RECOMMENDATION AS
SELECT
  AllViews.DDLSourceName AS DDLSourceName,
  dd02b.strucobjn_raw AS ViewName,
  AllViews.SQLViewName AS SQLViewName,
  AllViews.SourceType AS SourceType,
  AnalyticalQuery.value AS IsAnalyticalQuery,
  ddhead.value AS IsOdataPublished,
  AllViews.CreatedBy AS CreatedBy,
  AllViews.CreationDate AS CreationDate,
  AllViews.CreationTime AS CreationTime,
  released_cds_views.state AS ReleaseState
FROM /SSB/ALL_VIEW_NAMES AS AllViews
INNER JOIN tadir ON /* join condition not captured in parsed metadata */
;