MPRP SAP (Forecast Profiles) Table details

Dictionary Type: Table
Description: Forecast Profiles




ABAP Code to SELECT data from MPRP
Related tables to MPRP
Access table MPRP




Table field list including key, data, relationships and ABAP select examples

MPRP is a standard SAP Table which is used to store Forecast Profiles data and is available within R/3 SAP systems depending on the version and release level.

The MPRP table consists of various fields, each holding specific information or linking keys about Forecast Profiles data available in SAP. These include PROPR (Forecast profile), PRMOD (Forecast model), PERAN (Number of historical periods), ANZPR (Number of forecast periods).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)

Text table = T441T


SAP MPRP table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
PROPRForecast profile PROPRCHAR4PROPRPPR
PRMODForecast model PRMODCHAR1PRMOD
PERANNumber of historical periods PERANDEC3PERAN
ANZPRNumber of forecast periods ANZPRDEC3PERAN
PERINNumber of periods for initialization PERINDEC3PERAN
FIMONFixed periods FIMONDEC3PERAN
PERIONumber of periods per seasonal cycle PERIODEC3PERAN
KZINIInitialization indicator KZINICHAR1KZINI
SIGGRTracking limit SIGGRDEC5(3) SIGGR
MODAWModel Selection Indicator MODAWCHAR1MODAW
MODAVModel selection procedure MODAVCHAR1MODAV
KZPARIndicator for parameter optimization KZPARCHAR1XFELD
OPGRAOptimization level OPGRACHAR1OPGRA
GEWGRWeighting group GEWGRCHAR2Assigned to domainGEWGR
ALPHABasic value smoothing using alpha factor ALPHADEC3(2) GLATT
BETA1Trend value smoothing using the beta factor BETA1DEC3(2) GLATT
GAMMASeasonal index smoothing using gamma factor GAMMADEC3(2) GLATT
DELTAMAD (mean absolute deviation) smoothing using delta factor DELTADEC3(2) GLATT

Key field Non-key field



How do I retrieve data from SAP table MPRP using ABAP code

The following ABAP code Example will allow you to do a basic selection on MPRP to SELECT all data from the table
DATA: WA_MPRP TYPE MPRP.

SELECT SINGLE *
FROM MPRP
INTO CORRESPONDING FIELDS OF WA_MPRP
WHERE...

How to access SAP table MPRP

Within an ECC or HANA version of SAP you can also view further information about MPRP and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!