SAP DFPM_NUMB Sequential Numbers Table data and field list

DFPM_NUMB is a standard SAP Table which is used to store Sequential Numbers data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DFPM_NUMB table consists of various fields, each holding specific information or linking keys about Sequential Numbers data available in SAP. These include KEY1 (Reorganization-Relevant Key), KEY2 (Additional Key), CREATION_DATE (Created On), CURRENT_NUMBER (Numeric field 12)... 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. .

DFPM_NUMB table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP DFPM_NUMB 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 DFPM_NUMB 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
OBJECT 0
KEY1 Reorganization-Relevant Key0
KEY2 Additional Key0
CREATION_DATE Created On0
CURRENT_NUMBERNumeric field 12 NUM12NUMC12NUM12

Key field Non-key field



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

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

SELECT SINGLE *
FROM DFPM_NUMB
INTO CORRESPONDING FIELDS OF WA_DFPM_NUMB
WHERE...

How to access SAP table DFPM_NUMB

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

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