I_CustomCDSViewViewAnnotation

DDL: I_CUSTOMCDSVIEWVIEWANNOTATION SQL: APS_CCV_I_VAN_V Type: view Package: SAPS_CCV_DB

Custom CDS View View Annotation

I_CustomCDSViewViewAnnotation is a CDS View that provides data about "Custom CDS View View Annotation" in SAP S/4HANA. It reads from 1 data source (aps_ccv_d_v_anno) and exposes 4 fields with key field entity_name. It has 1 association to related views. Part of development package SAPS_CCV_DB.

Data Sources (1)

SourceAliasJoin Type
aps_ccv_d_v_anno aps_ccv_d_v_anno from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CustomCDSViewRoot _Root _Root.entity_name = $projection.entity_name

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName APS_CCV_I_VAN_V view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Custom CDS View View Annotation view
ObjectModel.writeDraftPersistence APS_CCV_D_V_AN_D view
ObjectModel.writeActivePersistence APS_CCV_D_V_ANNO view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.transactionalProcessingEnabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY entity_name entity_name Table Name
name name Zone name
value value Value from table
_Root _Root

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 I_CustomCDSViewViewAnnotation.
-- 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: APS_CCV_I_VAN_V

CREATE VIEW I_CustomCDSViewViewAnnotation AS
SELECT
  entity_name,
  name,
  value
FROM aps_ccv_d_v_anno
LEFT OUTER JOIN I_CustomCDSViewRoot AS _Root ON _Root.entity_name = entity_name  -- association [1..1]
;