C_RptvManufacturingProductVH

DDL: C_RPTVMANUFACTURINGPRODUCTVH SQL: CREMPRODVH Type: view CONSUMPTION

Repetitive Manufacturing Product

C_RptvManufacturingProductVH is a Consumption CDS View that provides data about "Repetitive Manufacturing Product" in SAP S/4HANA. It reads from 2 data sources (I_Product, I_MaterialPlant) and exposes 10 fields with key fields Product, Plant.

Data Sources (2)

SourceAliasJoin Type
I_Product I_Product from
I_MaterialPlant I_ProductPlant inner

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CREMPRODVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Product view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Repetitive Manufacturing Product view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Product I_Product Product Product Sold
KEY Plant I_MaterialPlant Plant Valuation Area
ProductName
ProductGroup I_Product ProductGroup Product Sold Group
ProductGroupName
ProductType I_Product ProductType Product Type Group
ProductTypeName
AuthorizationGroup I_Product AuthorizationGroup AuthorizGroup
_ProductGroup_2 I_Product _ProductGroup_2
_ProductType I_Product _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 C_RptvManufacturingProductVH.
-- 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: CREMPRODVH

CREATE VIEW C_RptvManufacturingProductVH AS
SELECT
  I_Product.Product AS Product,
  I_ProductPlant.Plant AS Plant,
  cast(I_Product._Text[1: Language = $session.system_language].ProductName as fco_rtwip_prod_desc preserving type ) AS ProductName,
  I_Product.ProductGroup AS ProductGroup,
  cast(I_Product._ProductGroupText[1:Language = $session.system_language].MaterialGroupName as fco_rtwip_prod_group_desc preserving type ) AS ProductGroupName,
  I_Product.ProductType AS ProductType,
  cast(I_Product._ProductTypeName[1:Language = $session.system_language].MaterialTypeName as fco_rtwip_prod_type_desc preserving type ) AS ProductTypeName,
  I_Product.AuthorizationGroup AS AuthorizationGroup,
  I_Product._ProductGroup_2 AS _ProductGroup_2,
  I_Product._ProductType AS _ProductType
FROM I_Product
INNER JOIN I_MaterialPlant AS I_ProductPlant ON /* join condition not captured in parsed metadata */
;