E_ProductToAssortmentModule

DDL: E_PRODUCTTOASSORTMENTMODULE SQL: EPRODTOASMMOD Type: view EXTENSION

E_ProductToAssortmentModule is a Extension CDS View in SAP S/4HANA. It reads from 1 data source (rfm_asm_article) and exposes 5 fields with key fields AssortmentModuleUUID, Product, ProductOfSuprordLstgCondition, ValidityStartDate, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
rfm_asm_article Persistence from

Annotations (8)

NameValueLevelField
VDM.viewType #EXTENSION view
AbapCatalog.sqlViewName EPRODTOASMMOD view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID rfm_asm_article object_guid Recipe GUID
KEY Product rfm_asm_article article Material
KEY ProductOfSuprordLstgCondition rfm_asm_article struct_article Structured matl
KEY ValidityStartDate rfm_asm_article valid_from Validity Start Time
KEY ValidityEndDate rfm_asm_article valid_to Validity End Time

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 E_ProductToAssortmentModule.
-- 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: EPRODTOASMMOD

CREATE VIEW E_ProductToAssortmentModule AS
SELECT
  Persistence.object_guid AS AssortmentModuleUUID,
  Persistence.article AS Product,
  Persistence.struct_article AS ProductOfSuprordLstgCondition,
  Persistence.valid_from AS ValidityStartDate,
  Persistence.valid_to AS ValidityEndDate
FROM rfm_asm_article AS Persistence
;