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

I_ProductStatus

DDL: I_PRODUCTSTATUS Type: view BASIC

Cross-Plant Product Status

I_ProductStatus (Basic)

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

Product Profile Code · Database & Data Management

I_ProductStatus is a Basic CDS View (Dimension) that provides data about "Cross-Plant Product Status" in SAP S/4HANA. It reads from 1 data source (t141) and exposes 2 fields with key field Status. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Product Master
Data CategoryDimension
StatusPlant-specific Product Status
Data Extraction TypeFull (physical deletions are possible in source tables) Delta
Purpose
This CDS view provides the consumer with list of product statuses. This view should be used for value help purpose only. It provides the value help for Cross Plant Product Status.

Structure
Important Fields Important fields in this view include the following: Field Name Description Status Plant-specific Product Status

SAP Business Warehouse (SAP BW) Extraction
Note The corresponding DataSource (Extractor) and this CDS view may have different functionalities. In case you are interested in the details of the DataSource, see the related documentation on the SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Application Help SAP Library BI Content . For more information on extraction, see Extracting Data Through CDS Views to SAP BW/4HANA .

View on SAP Help Portal →

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

Documentation

Data Sources (1)

SourceAliasJoin Type
t141 t141 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductStatusText _Text $projection.Status = _Text.Status

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPRDSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProductProfileCode view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
EndUserText.label Cross-Plant Product Status view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey Status view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.sapObjectNodeType.name ProductProfileCode view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Status Plant-Specific Product Status
_Text _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_ProductStatus.
-- 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_ProductStatus AS
SELECT
  cast(t141.mmsta as profilecode preserving type ) AS Status
FROM t141
LEFT OUTER JOIN I_ProductStatusText AS _Text ON Status = _Text.Status  -- association [0..*]
;