SEPMRA_I_ProductText

DDL: SEPMRA_I_PRODUCTTEXT Type: view

Product Text

SEPMRA_I_ProductText is a CDS View that provides data about "Product Text" in SAP S/4HANA. It reads from 3 data sources (snwd_texts, snwd_texts, snwd_pd) and exposes 8 fields with key fields Product, Language. It has 2 associations to related views.

Data Sources (3)

SourceAliasJoin Type
snwd_texts Desc left_outer
snwd_texts Name inner
snwd_pd Product from

Associations (2)

CardinalityTargetAliasCondition
[0..1] SEPMRA_I_Product_E _Product $projection.Product = _Product.Product
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SEPMRAIPDTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Product Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Language view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Product
KEY Language
Name
Description
node_keyasNameUUID
DescriptionUUID snwd_texts node_key Tree Model: Node Key
Associations_Product
_Language _Language

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 SEPMRA_I_ProductText.
-- 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.

CREATE VIEW SEPMRA_I_ProductText AS
SELECT
  cast( Product.product_id as sepmra_product preserving type ) AS Product,
  cast( Name.language as sepmra_language preserving type ) AS Language,
  cast( Name.text as sepmra_productname preserving type ) AS Name,
  cast( Desc.text as sepmra_productdescription preserving type ) AS Description,
  Desc.node_key AS DescriptionUUID
FROM snwd_pd AS Product
INNER JOIN snwd_texts AS Name ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN snwd_texts AS Desc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN SEPMRA_I_Product_E AS _Product ON Product = _Product.Product  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;