ViewProvAnnotatedCDSViews

DDL: CVIEW_PROVISIONING_ANNO_REPL SQL: ANOCDSVIEWS Type: view

CDS View Provisioning scope for annoted CDS views

ViewProvAnnotatedCDSViews is a CDS View that provides data about "CDS View Provisioning scope for annoted CDS views" in SAP S/4HANA. It reads from 2 data sources (ddddlsrct, ViewProvFilterAnnotation) and exposes 4 fields with key field ViewName.

Data Sources (2)

SourceAliasJoin Type
ddddlsrct _dddlsrc left_outer
ViewProvFilterAnnotation _vpa from

Parameters (1)

NameTypeDefault
p_ddlanguage ddlanguage

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ANOCDSVIEWS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #CLIENT_INDEPENDENT view
ClientHandling.algorithm #NONE view
EndUserText.label CDS View Provisioning scope for annoted CDS views view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ViewName ViewProvFilterAnnotation ddlname DDL Source Name
entityname ViewProvFilterAnnotation entityname Text
ViewAnnotation ViewProvFilterAnnotation annoname
Description ddddlsrct ddtext Short 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 ViewProvAnnotatedCDSViews.
-- 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: ANOCDSVIEWS
-- Parameters: p_ddlanguage : ddlanguage

CREATE VIEW ViewProvAnnotatedCDSViews AS
SELECT
  _vpa.ddlname AS ViewName,
  _vpa.entityname AS entityname,
  _vpa.annoname AS ViewAnnotation,
  _dddlsrc.ddtext AS Description
FROM ViewProvFilterAnnotation AS _vpa
LEFT OUTER JOIN ddddlsrct AS _dddlsrc ON /* join condition not captured in parsed metadata */
;