I_Productqm

DDL: I_PRODUCTQM Type: view BASIC

Product QM active core entity

I_Productqm (Basic)

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

ProductQualityManagement · Database & Data Management

I_Productqm is a Basic CDS View that provides data about "Product QM active core entity" in SAP S/4HANA. It reads from 1 data source (mara) and exposes 5 fields with key field Product. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Product Master
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables) Delta: Change Data Capture
Corresponding DataSourceNA
Purpose
his CDS view provides the consumer with list of Quality Management Specific details of the product records. Description: Product QM active core entity

Prerequisites
Users must also have authorization to access the Material Master Data for Plant.

Structure
Object types This view relates to the following SAP object types: Material Product

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 Use SAP Library BI Content . For more information about data 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 Source for Data Extraction
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition
Description <p>his CDS view provides the consumer with list of Quality Management Specific details of the product records. </p> <p>Description: Product QM active core entity</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
mara mara from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Product _Product $projection.Product = _Product.Product
[0..1] E_Product _ProductExt mara.matnr = _ProductExt.Product

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPRDQM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product QM active core entity view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.sapObjectNodeType.name ProductQualityManagement view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product Product Number
QltyMgmtInProcmtIsActive mara qmpur QM in Procurement Is Active
AuthorizationGroup mara begru Authorization Group
CatalogProfile mara rbnrm Catalog Profile
_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_Productqm.
-- 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_Productqm AS
SELECT
  cast (mara.matnr as productnumber preserving type ) AS Product,
  mara.qmpur AS QltyMgmtInProcmtIsActive,
  mara.begru AS AuthorizationGroup,
  mara.rbnrm AS CatalogProfile
FROM mara
LEFT OUTER JOIN I_Product AS _Product ON Product = _Product.Product  -- association [1..1]
LEFT OUTER JOIN E_Product AS _ProductExt ON mara.matnr = _ProductExt.Product  -- association [0..1]
;