sepm_sddl_product
sepm_sddl_product is a CDS View in SAP S/4HANA. It reads from 1 data source (snwd_pd) and exposes 10 fields with key field product_key. It has 15 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| snwd_pd | snwd_pd | from |
Associations (15)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | sepm_sddl_employees | created_by_employee | $projection.created_by_employee_key = created_by_employee.employee_key |
| [1] | sepm_sddl_employees | changed_by_employee | $projection.changed_by_employee_key = changed_by_employee.employee_key |
| [1..*] | sepm_sddl_text_data | product_name | $projection.product_name_key = product_name.original_lanuage_key |
| [1..*] | sepm_sddl_text_data | product_description | $projection.product_description_key = product_description.original_lanuage_key |
| [1] | sepm_sddl_text_original_langu | product_name_orig_langu | $projection.product_name_key = product_name_orig_langu.text_original_language_key |
| [1] | sepm_sddl_text_original_langu | product_description_orig_langu | $projection.product_description_key = product_description_orig_langu.text_original_language_key |
| [1] | sepm_sddl_businesspartner | supplier | $projection.supplier_key = supplier.business_partner_key |
| [0..1] | sepm_sddl_product_categories | main_category | snwd_pd.category = main_category.category |
| [0..*] | sepm_sddl_product_conv_factors | conversion_factor | $projection.product_key = conversion_factor.product_key |
| [0..1] | sepm_sddl_review_header | review_header | $projection.product_key = review_header.related_entity_key |
| [1] | tcurc | currency | currency_code = waers |
| [1] | t006 | measure_unit_code | measure_unit = msehi |
| [1] | t006 | dimension_unit_code | dim_unit = msehi |
| [1] | t006 | weight_unit_code | weight_unit = msehi |
| [0..*] | sepm_sddl_stock | storage_bins | $projection.product_key = storage_bins.product_key |
Annotations (1)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SEPM_SDDL_PROD | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | product_key | node_key | Tree Model: Node Key | |
| product_id | product_id | Simulated Product ID | ||
| type_code | type_code | Type Code | ||
| category | category | Violation Category | ||
| created_at | created_at | Uploaded On | ||
| changed_at | changed_at | Timestamp | ||
| supplier_key | supplier_guid | Node Key | ||
| measure_unit | measure_unit | Unit of Measure | ||
| weight_unit | weight_unit | Weight Unit | ||
| price | price | RVP f.PricePro. |
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 sepm_sddl_product.
-- 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: SEPM_SDDL_PROD
CREATE VIEW sepm_sddl_product AS
SELECT
node_key AS product_key,
product_id,
type_code,
category,
created_at,
changed_at,
supplier_guid AS supplier_key,
measure_unit,
weight_unit,
price
FROM snwd_pd
LEFT OUTER JOIN sepm_sddl_employees AS created_by_employee ON created_by_employee_key = created_by_employee.employee_key -- association [1]
LEFT OUTER JOIN sepm_sddl_employees AS changed_by_employee ON changed_by_employee_key = changed_by_employee.employee_key -- association [1]
LEFT OUTER JOIN sepm_sddl_text_data AS product_name ON product_name_key = product_name.original_lanuage_key -- association [1..*]
LEFT OUTER JOIN sepm_sddl_text_data AS product_description ON product_description_key = product_description.original_lanuage_key -- association [1..*]
LEFT OUTER JOIN sepm_sddl_text_original_langu AS product_name_orig_langu ON product_name_key = product_name_orig_langu.text_original_language_key -- association [1]
LEFT OUTER JOIN sepm_sddl_text_original_langu AS product_description_orig_langu ON product_description_key = product_description_orig_langu.text_original_language_key -- association [1]
LEFT OUTER JOIN sepm_sddl_businesspartner AS supplier ON supplier_key = supplier.business_partner_key -- association [1]
LEFT OUTER JOIN sepm_sddl_product_categories AS main_category ON snwd_pd.category = main_category.category -- association [0..1]
LEFT OUTER JOIN sepm_sddl_product_conv_factors AS conversion_factor ON product_key = conversion_factor.product_key -- association [0..*]
LEFT OUTER JOIN sepm_sddl_review_header AS review_header ON product_key = review_header.related_entity_key -- association [0..1]
LEFT OUTER JOIN tcurc AS currency ON currency_code = waers -- association [1]
LEFT OUTER JOIN t006 AS measure_unit_code ON measure_unit = msehi -- association [1]
LEFT OUTER JOIN t006 AS dimension_unit_code ON dim_unit = msehi -- association [1]
LEFT OUTER JOIN t006 AS weight_unit_code ON weight_unit = msehi -- association [1]
LEFT OUTER JOIN sepm_sddl_stock AS storage_bins ON product_key = storage_bins.product_key -- association [0..*]
;
Learn More
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA