SADL_V_Parameter_Type

DDL: SADL_V_PARAMETER_TYPE SQL: SADL_V_PARTYPE Type: view

SADL_V_Parameter_Type is a CDS View in SAP S/4HANA. It reads from 2 data sources (snwd_pd_catgos, snwd_pd) and exposes 2 fields with key field ProductID.

Data Sources (2)

SourceAliasJoin Type
snwd_pd_catgos Category left_outer
snwd_pd Product from

Parameters (1)

NameTypeDefault
p_NodeKey SNWD_NODE_KEY

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_PARTYPE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProductID snwd_pd product_id Simulated Product ID
Category snwd_pd category Violation 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_Type.
-- 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_PARTYPE
-- Parameters: p_NodeKey : SNWD_NODE_KEY

CREATE VIEW SADL_V_Parameter_Type AS
SELECT
  Product.product_id AS ProductID,
  Product.category AS Category
FROM snwd_pd AS Product
LEFT OUTER JOIN snwd_pd_catgos AS Category ON /* join condition not captured in parsed metadata */
;