I_ProductText

DDL: I_PRODUCTTEXT SQL: IPRODTEXT Type: view BASIC

Product - Text

I_ProductText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Database & Data Management

I_ProductText is a Basic CDS View that provides data about "Product - Text" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 4 fields with key fields Product, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-MM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Search
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
makt makt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Product _Product $projection.Product = _Product.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPRODTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product - Text view
ObjectModel.representativeKey Product view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product makt matnr Material Number
KEY Language makt spras Off. Language
ProductName Product Description
_Product _Product

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 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.
-- SQL view name: IPRODTEXT

CREATE VIEW I_ProductText AS
SELECT
  makt.matnr AS Product,
  makt.spras AS Language,
  cast(makt.maktx as productdescription preserving type ) AS ProductName
FROM makt
LEFT OUTER JOIN I_Product AS _Product ON Product = _Product.Product  -- association [1..1]
;