UMD04 SAP (Default Values for Planning Table in Repetitive Mfg) Table details

Dictionary Type: Table
Description: Default Values for Planning Table in Repetitive Mfg




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




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

UMD04 is a standard SAP Table which is used to store Default Values for Planning Table in Repetitive Mfg data and is available within R/3 SAP systems depending on the version and release level.

The UMD04 table consists of various fields, each holding specific information or linking keys about Default Values for Planning Table in Repetitive Mfg data available in SAP. These include UNAME (User Name), MDAKT (Activity types in materials planning), NETPL (Net requirements segment in the planning table), BRTPL (Gross requirements planning in the planning table).. 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)


SAP UMD04 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
UNAMEUser Name SYUNAMECHAR12SYCHAR12
MDAKTActivity types in materials planning MDAKTCHAR1MDAKT
NETPLNet requirements segment in the planning table NETPLCHAR1CHAR1
BRTPLGross requirements planning in the planning table BRTPLCHAR1CHAR1
LGOR1Storage location MRP in the planning table LGOR1CHAR1CHAR1
LGOR2Excluded storage locations in the planning table LGOR2CHAR1CHAR1
KNDPLMake-to-order planning in the planning table KNDPLCHAR1CHAR1
PROPLPlanning individual projects in the planning table PROPLCHAR1CHAR1
MSTPLDirect Production in Planning Table MSTPLCHAR1CHAR1
VORPLPlanning without final assembly in the planning table VORPLCHAR1CHAR1
LELIWOnly select materials with production LELIWCHAR1CHAR1
ONLRQOnly select materials with requirements ONLRQCHAR1CHAR1
ANZKAOnly display capacity categories relevant to scheduling ANZKACHAR1CHAR1
KPFLGIndicator: Capacity planning active KPFLGCHAR1CHAR1
ERWMDDisable extended material data in REM planning table ERWMDCHAR1CHAR1
SELH1Selection period for the planning table SA_SELH1DEC3DEC03
SELH2Selection period for the planning table SA_SELH1DEC3DEC03
SKBEDRow sort ID for requirements in the planning table SA_SKBEDNUMC2NUMC2
SKVERRow Sort ID for 'Available Quantity' in Planning Table SA_SKVERNUMC2NUMC2
SKREIRow sort ID for coverage in the planning table SA_SKREINUMC2NUMC2
SKANDRow sort ID for other versions in the planning table SA_SKANDNUMC2NUMC2
SKNZURow sort ID for 'to be assigned' in the planning table SA_SKNZUNUMC2NUMC2
SKVPBRow sort ID for planned indep. reqmts in the planning table SA_SKVPBNUMC2NUMC2
SKSUZRow sort ID for 'total receipts' in the planning table SA_SKSUZNUMC2NUMC2
SKSUBRow sort ID for 'total requirements' in the planning table SA_SKSUBNUMC2NUMC2
SKPRDRow sort ID for production in the planning table SA_SKPRDNUMC2NUMC2
SKSZURow sort ID for 'other receipts' in the planning table SA_SKSZUNUMC2NUMC2
SKLFPRow sort IS for long-term planning in the planning table SA_SKLFPNUMC2NUMC2
SKREWRow Sort ID for Range of Coverage in Planning Table SKREWNUMC2NUMC2
MATSKMaterial selection appears when accessing the planning table SA_MATSKCHAR1CHAR1
LINSKLine selection appears when accessing the planning table SA_LINSKCHAR1CHAR1
PERIOTime bucket SA_PERIOCHAR1SA_PERIO
PRDPLProduction dates or basic dates ? PRDPLCHAR1PRDPL
PATVRScheduling strategy in the planning table PATVRCHAR1PATVR
ABBEDDisplay requirements rows ABBEDCHAR1CHAR1
ABVERDisplay availability ABVERCHAR1CHAR1
ABREIDisplay coverage ABREICHAR1ABREI
ABANDDisplay other versions ABANDCHAR1CHAR1
ABNZUDisplay quantities still to be assigned ABNZUCHAR1CHAR1
ABVPBDisplay planned independent reqmts in the planning table ABVPBCHAR1CHAR1
ABSUZDisplay total production in the planning table ABSUZCHAR1CHAR1
ABSUBDisplay total requirments in the planning table ABSBECHAR1CHAR1
ABUEZDisplay the user exit row in the planning table ABUEZCHAR1CHAR1
ABSZUDisplay other receipts ABSZUCHAR1CHAR1
ABLFPDisplay information from long-term planning ABLFPCHAR1CHAR1
SKTPTSort in the planning table: By material - by line SKZPTCHAR1SKZPT
SVIEWView selection for the repetitive mfg planning table SVIEWCHAR1SVIEW
PFEXLPath for accessing EXCEL in the planning table (MF50) PFEXLCHAR100CHAR100
TEEKZDetermines the scheduling level in the planning table TEEKZCHAR1TEEKZ
SMEKZStandard unit of measure UNIKZNUMC2SMEKZ
DSTRIQuantities display in the planning table DSTRICHAR1DSTRI
DSPHZPeriod in days for automatically dispatching in MF50 DSPHZNUMC3NUM03
ABKOMREM-PT: MRP segment aggregation ABKOMCHAR1ABKOM
SKUE1Row sort ID for user exit rows in planning table SA_SKUEZNUMC2NUMC2
ABUE2Display the user exit row in the planning table ABUEZCHAR1CHAR1
SKUE2Row sort ID for user exit rows in planning table SA_SKUEZNUMC2NUMC2
ABUE3Display the user exit row in the planning table ABUEZCHAR1CHAR1
SKUE3Row sort ID for user exit rows in planning table SA_SKUEZNUMC2NUMC2
JVIEWView of dispatched orders SP_GJVIEWCHAR1SP_GJVIEW
DETLIDetailed information (restrictions) on production line DETAIL_LINECHAR1XFLAG
DETDIDetailed information (restriction) on MRP controller DETAIL_DISPONENTCHAR1XFLAG
TABSTREM PT: Active tabstrip (set in initial screen) ACTIVE_TAB_STRIPCHAR4CHAR4
DAYDEIndicates whether day's description displayed for periods DAY_DESCRIBTIONCHAR1CHAR1
COLTXColumn width COLWIDTHNUMC2NUMC2
COLMAColumn width COLWIDTHNUMC2NUMC2
ERGBZSelection rule ERGBZCHAR8CHAR8

Key field Non-key field



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

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

SELECT SINGLE *
FROM UMD04
INTO CORRESPONDING FIELDS OF WA_UMD04
WHERE...

How to access SAP table UMD04

Within an ECC or HANA version of SAP you can also view further information about UMD04 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!