I_PRAMatlMjrProdMappg

DDL: I_PRAMATLMJRPRODMAPPG SQL: IPRATSTMMPM Type: view BASIC Package: OIU_TV

Material and Product Code Xref

I_PRAMatlMjrProdMappg is a Basic CDS View that provides data about "Material and Product Code Xref" in SAP S/4HANA. It reads from 1 data source (oiu_cm_mat_prcd) and exposes 3 fields with key field Material. Part of development package OIU_TV.

Data Sources (1)

SourceAliasJoin Type
oiu_cm_mat_prcd oiu_cm_mat_prcd from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRATSTMMPM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material and Product Code Xref view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
MajorProduct majpd_cd Major Product
MinorProduct pd_cd Product code

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_PRAMatlMjrProdMappg.
-- 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: IPRATSTMMPM

CREATE VIEW I_PRAMatlMjrProdMappg AS
SELECT
  matnr AS Material,
  majpd_cd AS MajorProduct,
  pd_cd AS MinorProduct
FROM oiu_cm_mat_prcd
;