VB_CDS_QUERY_VIEWS

DDL: VB_CDS_QUERY_VIEWS SQL: VBQUERYCDS Type: view

View Browser CDS Views

VB_CDS_QUERY_VIEWS is a CDS View that provides data about "View Browser CDS Views" in SAP S/4HANA. It reads from 1 data source (VB_CORE_CDS_VIEWS) and exposes 22 fields with key field DDLSourceName.

Data Sources (1)

SourceAliasJoin Type
VB_CORE_CDS_VIEWS Core_CDSViews from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName VBQUERYCDS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label View Browser CDS Views view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName VB_CORE_CDS_VIEWS DDLSourceName DDL Source Name
CDSName VB_CORE_CDS_VIEWS CDSName
SQLViewName VB_CORE_CDS_VIEWS SQLViewName View Name
DDLSourceNameText VB_CORE_CDS_VIEWS DDLSourceNameText DD: Original Name of a Struct. Obj. (e.g. Entity, Context)
DefaultText VB_CORE_CDS_VIEWS DefaultText Short text
DDLSourceText VB_CORE_CDS_VIEWS DDLSourceText Short text
CDSViewPackage VB_CORE_CDS_VIEWS CDSViewPackage
CDSViewCategoryendasCDSViewCategory
CdsViewType VB_CORE_CDS_VIEWS CdsViewType
ApplicationComponentName VB_CORE_CDS_VIEWS ApplicationComponentName
CDSOriginKey VB_CORE_CDS_VIEWS CDSOriginKey
stateendasCDSViewStatus
stateendasCDSViewStatusCloud
CDSOrigin
DDLSourceIsFavorite
_CdsViewUserTag VB_CORE_CDS_VIEWS _CdsViewUserTag
_CdsDefinition VB_CORE_CDS_VIEWS _CdsDefinition
_CdsViewCrossreference VB_CORE_CDS_VIEWS _CdsViewCrossreference
_CdsViewAnnotation VB_CORE_CDS_VIEWS _CdsViewAnnotation
CDSViewSourceSystem VB_CORE_CDS_VIEWS CDSViewSourceSystem
_CdsSupportedCapabilities VB_CORE_CDS_VIEWS _CdsSupportedCapabilities
SourceType VB_CORE_CDS_VIEWS SourceType Source Type

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 VB_CDS_QUERY_VIEWS.
-- 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: VBQUERYCDS

CREATE VIEW VB_CDS_QUERY_VIEWS AS
SELECT
  Core_CDSViews.DDLSourceName AS DDLSourceName,
  Core_CDSViews.CDSName AS CDSName,
  Core_CDSViews.SQLViewName AS SQLViewName,
  Core_CDSViews.DDLSourceNameText AS DDLSourceNameText,
  Core_CDSViews.DefaultText AS DefaultText,
  Core_CDSViews.DDLSourceText AS DDLSourceText,
  Core_CDSViews.CDSViewPackage AS CDSViewPackage,
  case when SourceType = 'P' then 'true' else Core_CDSViews.CDSViewCategory end as CDSViewCategory AS CDSViewCategoryendasCDSViewCategory,
  Core_CDSViews.CdsViewType AS CdsViewType,
  Core_CDSViews.ApplicationComponentName AS ApplicationComponentName,
  Core_CDSViews.CDSOriginKey AS CDSOriginKey,
  case when Cds_Release_Status.use_in_key_user_apps = 'X' then Cds_Release_Status.state end as CDSViewStatus AS stateendasCDSViewStatus,
  case when Cds_Release_Status.use_in_cloud_development = 'X' then Cds_Release_Status.state end as CDSViewStatusCloud AS stateendasCDSViewStatusCloud,
  Core_CDSViews._EditorText[Language = $session.system_language].ddtext AS CDSOrigin,
  Core_CDSViews._CdsFavorite.DDLSourceIsFavorite AS DDLSourceIsFavorite,
  Core_CDSViews._CdsViewUserTag AS _CdsViewUserTag,
  Core_CDSViews._CdsDefinition AS _CdsDefinition,
  Core_CDSViews._CdsViewCrossreference AS _CdsViewCrossreference,
  Core_CDSViews._CdsViewAnnotation AS _CdsViewAnnotation,
  Core_CDSViews.CDSViewSourceSystem AS CDSViewSourceSystem,
  Core_CDSViews._CdsSupportedCapabilities AS _CdsSupportedCapabilities,
  Core_CDSViews.SourceType AS SourceType
FROM VB_CORE_CDS_VIEWS AS Core_CDSViews
;