SADL_V_AnalyticsDetails

DDL: SADL_V_ANALYTICS_DETAILS SQL: SADL_V_ANA_DTLS Type: view

SADL_V_AnalyticsDetails is a CDS View in SAP S/4HANA. It reads from 1 data source (snwd_pd) and exposes 6 fields with key field ProductID.

Data Sources (1)

SourceAliasJoin Type
snwd_pd Product from

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_ANA_DTLS view
AccessControl.authorizationCheck #NOT_REQUIRED view
OData.applySupportedForAggregation #FULL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProductID snwd_pd product_id Simulated Product ID
Category snwd_pd category Violation Category
Price price RVP f.PricePro.
Currency currency_code Currency Code
CurrencyInformation currency_code Currency Code
NumberOfProducts

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 SADL_V_AnalyticsDetails.
-- 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: SADL_V_ANA_DTLS

CREATE VIEW SADL_V_AnalyticsDetails AS
SELECT
  Product.product_id AS ProductID,
  Product.category AS Category,
  Price,
  currency_code AS Currency,
  currency_code AS CurrencyInformation,
  cast( 1 as abap.int4 ) AS NumberOfProducts
FROM snwd_pd AS Product
;