I_CustomCDSViewAnaDataCategory

DDL: I_CUSTOMCDSVIEWANADATACATEGORY SQL: APS_CCV_I_VAD Type: view BASIC

Custom CDS View Analytics Data Category

I_CustomCDSViewAnaDataCategory is a Basic CDS View that provides data about "Custom CDS View Analytics Data Category" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field AnalyticsDatacategory.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t text left_outer

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AnalyticsDatacategory view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.sqlViewName APS_CCV_I_VAD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Custom CDS View Analytics Data Category view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AnalyticsDatacategory
AnalyticsDataCategoryText dd07t 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 I_CustomCDSViewAnaDataCategory.
-- 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_VAD

CREATE VIEW I_CustomCDSViewAnaDataCategory AS
SELECT
  substring(dd07l.domvalue_l, 1, 1) AS AnalyticsDatacategory,
  text.ddtext AS AnalyticsDataCategoryText
FROM dd07l
LEFT OUTER JOIN dd07t AS text ON /* join condition not captured in parsed metadata */
;