Qb_Count_Published_Query_CE

DDL: QB_COUNT_PUBLISHED_QUERY_CE SQL: QBCDSPUBCOUNT Type: view

Query Browser Published views count

Qb_Count_Published_Query_CE is a CDS View that provides data about "Query Browser Published views count" in SAP S/4HANA. It reads from 2 data sources (QB_CDSVIEWS_FINAL_QUERY, ARS_APIS_RELEASED_C1_ALL_OR_GR) and exposes 8 fields.

Data Sources (2)

SourceAliasJoin Type
QB_CDSVIEWS_FINAL_QUERY Qb_Cdsviews_Query_Ce from
ARS_APIS_RELEASED_C1_ALL_OR_GR ReleasedViews inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName QBCDSPUBCOUNT view
EndUserText.label Query Browser Published views count view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view

Fields (8)

KeyFieldSource TableSource FieldDescription
DDLSourceName QB_CDSVIEWS_FINAL_QUERY DDLSourceName DDL Source Name
DDLSourceNameText QB_CDSVIEWS_FINAL_QUERY DDLSourceNameText
SQLAnalyticalQuery QB_CDSVIEWS_FINAL_QUERY SQLAnalyticalQuery
SQLAnalyticalView QB_CDSVIEWS_FINAL_QUERY SQLAnalyticalView
ApplicationComponentName QB_CDSVIEWS_FINAL_QUERY ApplicationComponentName
DDLSourceIsFavorite QB_CDSVIEWS_FINAL_QUERY DDLSourceIsFavorite
ReferredObjectDDLSourceName QB_CDSVIEWS_FINAL_QUERY ReferredObjectDDLSourceName DDL Source Name
InAServiceName QB_CDSVIEWS_FINAL_QUERY InAServiceName

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 Qb_Count_Published_Query_CE.
-- 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: QBCDSPUBCOUNT

CREATE VIEW Qb_Count_Published_Query_CE AS
SELECT
  Qb_Cdsviews_Query_Ce.DDLSourceName AS DDLSourceName,
  Qb_Cdsviews_Query_Ce.DDLSourceNameText AS DDLSourceNameText,
  Qb_Cdsviews_Query_Ce.SQLAnalyticalQuery AS SQLAnalyticalQuery,
  Qb_Cdsviews_Query_Ce.SQLAnalyticalView AS SQLAnalyticalView,
  Qb_Cdsviews_Query_Ce.ApplicationComponentName AS ApplicationComponentName,
  Qb_Cdsviews_Query_Ce.DDLSourceIsFavorite AS DDLSourceIsFavorite,
  Qb_Cdsviews_Query_Ce.ReferredObjectDDLSourceName AS ReferredObjectDDLSourceName,
  Qb_Cdsviews_Query_Ce.InAServiceName AS InAServiceName
FROM QB_CDSVIEWS_FINAL_QUERY AS Qb_Cdsviews_Query_Ce
INNER JOIN ARS_APIS_RELEASED_C1_ALL_OR_GR AS ReleasedViews ON /* join condition not captured in parsed metadata */
;