SAP RXPDSTAT Expediting Statistic Data Table data and field list

RXPDSTAT is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Expediting Statistic Data" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_RXPDSTAT TYPE RXPDSTAT.

The RXPDSTAT table consists of various fields, each holding specific information or linking keys about Expediting Statistic Data data available in SAP. These include ITEMS (Number of Line Items), SLINES (Number of Schedule Lines), NMRS (Number of Subitems), EVENTS (Number of Events)... 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. .

RXPDSTAT structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP RXPDSTAT structure 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 RXPDSTAT 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
ORDERSNo. of Purchase Orders EXP_ORDERSNUMC5NUMC5
ITEMSNumber of Line Items EXP_ITEMSNUMC5NUMC5
SLINESNumber of Schedule Lines EXP_SLINESNUMC6NUMC6
NMRSNumber of Subitems EXP_NMRSNUMC5NUMC5
EVENTSNumber of Events EXP_NEVENTSNUMC6NUMC6
TOP_EVENTSNumber of Open Events EXP_TOP_EVENTSNUMC6NUMC6
TOP_NMRSNumber of Open Subitems EXP_TOP_NMRSNUMC5NUMC5
TOP_SLINESNumber of Open Schedule Lines EXP_TOP_SLINESNUMC6NUMC6
TOP_ITEMSNumber of Open Items EXP_TOP_ITEMSNUMC5NUMC5
TOP_ORDERSNumber of Open Purchase Orders EXP_TOP_ORDERSNUMC5NUMC5
POP_EVENTSPercentage Share EXP_PERCENTNUMC3NUMC3
POP_NMRSPercentage Share EXP_PERCENTNUMC3NUMC3
POP_SLINESPercentage Share EXP_PERCENTNUMC3NUMC3
POP_ITEMSPercentage Share EXP_PERCENTNUMC3NUMC3
POP_ORDERSPercentage Share EXP_PERCENTNUMC3NUMC3
TOV_EVENTSNumber of Overdue Events EXP_TOV_EVENTSNUMC6NUMC6
TOV_NMRSNumber of Overdue Subitems EXP_TOV_NMRSNUMC5NUMC5
TOV_SLINESNumber of Overdue Schedule Lines EXP_TOV_SLINESNUMC6NUMC6
TOV_ITEMSNumber of Overdue Items EXP_TOV_ITEMSNUMC5NUMC5
TOV_ORDERSNumber of Overdue Purchase Orders EXP_TOV_ORDERSNUMC5NUMC5
POV_EVENTSPercentage Share EXP_PERCENTNUMC3NUMC3
POV_NMRSPercentage Share EXP_PERCENTNUMC3NUMC3
POV_SLINESPercentage Share EXP_PERCENTNUMC3NUMC3
POV_ITEMSPercentage Share EXP_PERCENTNUMC3NUMC3
POV_ORDERSPercentage Share EXP_PERCENTNUMC3NUMC3

Key field Non-key field



How do I retrieve data from SAP structure RXPDSTAT using ABAP code?

As RXPDSTAT is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on RXPDSTAT as there is no data to select.

How to access SAP table RXPDSTAT

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

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