Sadl_V_Parameter_Syst_Anly

DDL: SADL_V_PARAMETER_SYST_ANLY SQL: SADL_V_PAR_SYSTA Type: view

Analytical view with implicit system parameters

Sadl_V_Parameter_Syst_Anly is a CDS View that provides data about "Analytical view with implicit system parameters" in SAP S/4HANA. It reads from 1 data source (snwd_pd) and exposes 5 fields with key field product_id. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
snwd_pd Product from

Parameters (1)

NameTypeDefault
p_user syuname

Associations (2)

CardinalityTargetAliasCondition
[1] Sadl_V_Parameter_Syst_Anly myself $projection.product_id = myself.product_id
[1] Sadl_V_Parameter_Syst transactional $projection.product_id = transactional.product_id

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_PAR_SYSTA view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Analytical view with implicit system parameters view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY product_id product_id Simulated Product ID
category category Violation Category
price price RVP f.PricePro.
Currency currency_code Currency Code
myself myself

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_Syst_Anly.
-- 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_SYSTA
-- Parameters: p_user : syuname

CREATE VIEW Sadl_V_Parameter_Syst_Anly AS
SELECT
  product_id,
  category,
  price,
  currency_code AS Currency,
  myself
FROM snwd_pd AS Product
LEFT OUTER JOIN Sadl_V_Parameter_Syst_Anly AS myself ON product_id = myself.product_id  -- association [1]
LEFT OUTER JOIN Sadl_V_Parameter_Syst AS transactional ON product_id = transactional.product_id  -- association [1]
;