SAP FMUP01 Update Control with Value Type Dependency Table data and field list

FMUP01 is a standard SAP Table which is used to store Update Control with Value Type Dependency data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The FMUP01 table consists of various fields, each holding specific information or linking keys about Update Control with Value Type Dependency data available in SAP. These include WRTTP (Value Type), VRGNG (CO Business Transaction), PAYBUDGET (Payment budget), COMBUDGET (Commitment budget)... 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. .

FMUP01 table Technical Details:

Delivery Class: S - System table, maint. only by SAP, change = modification
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the FMUP01 table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
PROFILFM update profile FM_PROFILCHAR6FMUP00FM_PROFIL
WRTTPValue Type FM_WRTTPCHAR2FM_WRTTP
VRGNGCO Business Transaction CO_VORGANGCHAR4TJ01J_VORGANG
PAYBUDGETPayment budget BP_PBOCHAR1X
COMBUDGETCommitment budget BP_CBOCHAR1X
YEARDEPENDYear-dependent control of payment and commitment budget FM_XYEARDPCHAR1XFELD
PAYREDUCTPayment Budget of Preceding Document is Reduced FM_XPAYREDCHAR1XFELD
COMREDUCTCommitment Budget of Preceding Document is Reduced FM_XCOMREDCHAR1XFELD
PAYDTFYEARPB date Fyear FM_XPAYFYRCHAR1FM_DATTYPE
COMDTFYEARCB date Fyear FM_XCOMFYRCHAR1FM_DATTYPE
PAYDTAYEARPayment Budget Date Approval Year FM_XPAYAYRCHAR1FM_DATTYPE
COMDTAYEARCommitment budget date, approval year FM_XCOMAYRCHAR1FM_DATTYPE
PAYAUTOCFNo longer used FM_XPAYACFCHAR1XFELD
COMAUTOCFNo longer used FM_XCOMACFCHAR1XFELD
PAYCCNCCN logic, payment budget FM_XPAYCCNCHAR1XFELD
COMCCNCCN logic, commitment budget FM_XCOMCCNCHAR1XFELD
PAYVASFUNDPayment Periodic Based Encumbrance Tracking FM_PAYVASFUNDCHAR1XFELD
COMVASFUNDCommitment Periodic Based Encumbrance Tracking FM_COMVASFUNDCHAR1XFELD
ASSBDGTBudget assigned FM_XASSBDGCHAR1XFELD
RECONTROLRevenue/expenditure control FM_RECTRLCHAR1FM_RECTRL
UNAMEUser Name FM_UNAMECHAR12SYCHAR12
PAYVCOFUNDPayment Fiscal Year Based Encumbrance Tracking FM_PAYVCOFUNDCHAR1XFELD
COMVCOFUNDCommitment Fiscal Year Based Encumbrance Tracking FM_COMVCOFUNDCHAR1XFELD
PAYAPPRApproved Amounts in Payment Budget FM_XPAYAPPRCHAR1XFELD
COMAPPRApproved Amounts in Commitment Budget FM_XCOMAPPRCHAR1XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM FMUP01
INTO CORRESPONDING FIELDS OF WA_FMUP01
WHERE...

How to access SAP table FMUP01

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

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