Deprecated
This CDS view is deprecated in S/4HANA. Use I_ProductTypeText_2 instead. View all deprecated CDS views →

I_ProductTypeText

DDL: I_PRODUCTTYPETEXT Type: view BASIC

Product Type - Text

I_ProductTypeText (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_ProductTypeText is a Basic CDS View that provides data about "Product Type - Text" in SAP S/4HANA. It reads from 1 data source (t134t) and exposes 5 fields with key fields ProductType, Language. It has 2 associations 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, Data Source for Search, Language-Dependent Text, Data Source for Data Extraction
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t134t t134t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Producttype _ProductType $projection.ProductType = _ProductType.ProductType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IPRODTYPTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProductTypeText_2 view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Product Type - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProductType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProductType Product Type
KEY Language t134t spras Off. Language
MaterialTypeName Description of product type
_Language _Language
_ProductType _ProductType

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_ProductTypeText.
-- 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 I_ProductTypeText AS
SELECT
  cast(t134t.mtart as producttype preserving type ) AS ProductType,
  t134t.spras AS Language,
  cast(t134t.mtbez as producttypename preserving type ) AS MaterialTypeName
FROM t134t
LEFT OUTER JOIN I_Producttype AS _ProductType ON ProductType = _ProductType.ProductType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;