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

I_ProductStatusText

DDL: I_PRODUCTSTATUSTEXT SQL: IPRDSTATUST Type: view BASIC

Cross-Plant Product Status - Text

I_ProductStatusText (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_ProductStatusText is a Basic CDS View that provides data about "Cross-Plant Product Status - Text" in SAP S/4HANA. It reads from 1 data source (t141t) and exposes 3 fields with key fields Status, Language.

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, Data Source for Data Extraction
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t141t t141t from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPRDSTATUST view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProductProfileCodeText view
ObjectModel.dataCategory #TEXT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
EndUserText.label Cross-Plant Product Status - Text view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey Status view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Status t141t mmsta Plant-Specific Material Status
KEY Language spras Off. Language
MaterialUsabilityProfileName Cross Plant Status Text

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_ProductStatusText.
-- 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: IPRDSTATUST

CREATE VIEW I_ProductStatusText AS
SELECT
  t141t.mmsta AS Status,
  spras AS Language,
  cast(t141t.mtstb as crossplantstatustext preserving type ) AS MaterialUsabilityProfileName
FROM t141t
;