I_MRPType

DDL: I_MRPTYPE SQL: IPPMRPTYPE Type: view BASIC

MRP Type

I_MRPType (Basic)

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

MRP Type · Manufacturing

I_MRPType is a Basic CDS View (Dimension) that provides data about "MRP Type" in SAP S/4HANA. It reads from 1 data source (t438a) and exposes 4 fields with key field MRPType. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Material Requirements Planning
Data CategoryDIMENSION
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which MRP types are maintained?

Structure
Main input parameters This view does not have any input parameters. Measures and attributes The following attribute is provided: MRP type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which MRP types are maintained?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t438a typ from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_MRPTypeText _Text $projection.MRPType = _Text.MRPType
[0..1] I_MRPProcedure _MRPProcedure $projection.MRPProcedure = _MRPProcedure .MRPProcedure

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPMRPTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MRPType view
ObjectModel.sapObjectNodeType.name MRPType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label MRP Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MRPType t438a dismm MRP Type
MRPProcedure t438a disvf MRP Procedure
_MRPProcedure _MRPProcedure
_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_MRPType.
-- 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: IPPMRPTYPE

CREATE VIEW I_MRPType AS
SELECT
  typ.dismm AS MRPType,
  typ.disvf AS MRPProcedure
FROM t438a AS typ
LEFT OUTER JOIN I_MRPTypeText AS _Text ON MRPType = _Text.MRPType  -- association [0..*]
LEFT OUTER JOIN I_MRPProcedure AS _MRPProcedure ON MRPProcedure = _MRPProcedure .MRPProcedure  -- association [0..1]
;