SWX_EPM_PROD

DDL: SWX_EPM_PROD SQL: SWX_EPMPROD Type: view Package: S_EPM_WORKFLOW

CDS view for EPM Product BO wrapper class

SWX_EPM_PROD is a CDS View that provides data about "CDS view for EPM Product BO wrapper class" in SAP S/4HANA. It reads from 3 data sources (SEPM_I_Product, SEPM_I_Product_E, SEPM_I_ProductCategory) and exposes 22 fields with key field Product. Part of development package S_EPM_WORKFLOW.

Data Sources (3)

SourceAliasJoin Type
SEPM_I_Product SEPM_I_Product inner
SEPM_I_Product_E SEPM_I_Product_E from
SEPM_I_ProductCategory SEPM_I_ProductCategory inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SWX_EPMPROD view
AbapCatalog.compiler.compareFilter true view
EndUserText.label CDS view for EPM Product BO wrapper class view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY Product SEPM_I_Product_E Product Product Sold
ProductType SEPM_I_Product_E ProductType Product Type Group
ProductCategory SEPM_I_Product_E ProductCategory Prod Category
MainProductCategory SEPM_I_ProductCategory MainProductCategory Main Category
CreationDateTime SEPM_I_Product_E CreationDateTime Timestamp
LastChangedDateTime SEPM_I_Product_E LastChangedDateTime Time Stamp
Price SEPM_I_Product_E Price RVP f.PricePro.
Currency SEPM_I_Product_E Currency Valuation Crcy
Height SEPM_I_Product_E Height Height
Width SEPM_I_Product_E Width Width
Depth SEPM_I_Product_E Depth Draught
DimensionUnit SEPM_I_Product_E DimensionUnit Unit of length
ProductPictureURL SEPM_I_Product_E ProductPictureURL Image
ProductValueAddedTax SEPM_I_Product_E ProductValueAddedTax Tax Tariff Code
Supplier SEPM_I_Product_E Supplier Supplier
ProductBaseUnit SEPM_I_Product_E ProductBaseUnit Unit of Measure
Weight SEPM_I_Product_E Weight Weight Used
WeightUnit SEPM_I_Product_E WeightUnit Weight unit
CreatedByUser SEPM_I_Product CreatedByUser User Name
LastChangedByUser SEPM_I_Product LastChangedByUser User Name
ProductNameGroupUUID SEPM_I_Product ProductNameGroupUUID Node Key
ProductDescriptionGroupUUID SEPM_I_Product ProductDescriptionGroupUUID Node Key

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 SWX_EPM_PROD.
-- 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: SWX_EPMPROD

CREATE VIEW SWX_EPM_PROD AS
SELECT
  SEPM_I_Product_E.Product AS Product,
  SEPM_I_Product_E.ProductType AS ProductType,
  SEPM_I_Product_E.ProductCategory AS ProductCategory,
  SEPM_I_ProductCategory.MainProductCategory AS MainProductCategory,
  SEPM_I_Product_E.CreationDateTime AS CreationDateTime,
  SEPM_I_Product_E.LastChangedDateTime AS LastChangedDateTime,
  SEPM_I_Product_E.Price AS Price,
  SEPM_I_Product_E.Currency AS Currency,
  SEPM_I_Product_E.Height AS Height,
  SEPM_I_Product_E.Width AS Width,
  SEPM_I_Product_E.Depth AS Depth,
  SEPM_I_Product_E.DimensionUnit AS DimensionUnit,
  SEPM_I_Product_E.ProductPictureURL AS ProductPictureURL,
  SEPM_I_Product_E.ProductValueAddedTax AS ProductValueAddedTax,
  SEPM_I_Product_E.Supplier AS Supplier,
  SEPM_I_Product_E.ProductBaseUnit AS ProductBaseUnit,
  SEPM_I_Product_E.Weight AS Weight,
  SEPM_I_Product_E.WeightUnit AS WeightUnit,
  SEPM_I_Product.CreatedByUser AS CreatedByUser,
  SEPM_I_Product.LastChangedByUser AS LastChangedByUser,
  SEPM_I_Product.ProductNameGroupUUID AS ProductNameGroupUUID,
  SEPM_I_Product.ProductDescriptionGroupUUID AS ProductDescriptionGroupUUID
FROM SEPM_I_Product_E
INNER JOIN SEPM_I_Product ON /* join condition not captured in parsed metadata */
INNER JOIN SEPM_I_ProductCategory ON /* join condition not captured in parsed metadata */
;