SADL_V_Parameter_Analytics

DDL: SADL_V_PARAMETER_ANALYTICS SQL: SADL_V_PAR_AN Type: view

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

Data Sources (1)

SourceAliasJoin Type
snwd_pd Product from

Parameters (1)

NameTypeDefault
p_MainCategory char40

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_PAR_AN view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Product_ID product_id Simulated Product ID
Category snwd_pd category Violation Category
MainCategory _category main_category Main Category
Price price RVP f.PricePro.
Currency currency_code Currency Code
_category _category

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_Parameter_Analytics.
-- 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_PAR_AN
-- Parameters: p_MainCategory : char40

CREATE VIEW SADL_V_Parameter_Analytics AS
SELECT
  Product_ID,
  Product.category AS Category,
  _category.main_category AS MainCategory,
  Price,
  currency_code AS Currency
FROM snwd_pd AS Product
;