TXPDAT SAP (Expediting Data) Table details

Dictionary Type: Table
Description: Expediting Data




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




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

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

The TXPDAT table consists of various fields, each holding specific information or linking keys about Expediting Data data available in SAP. These include EXPOBJ (Progress Tracking Object Indicator), IDENT (Identification), NMRID (Unique Number of Subitem), EVENT (Progress Tracking Event).. 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)


SAP TXPDAT 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 MANDTCLNT3Assigned to domainMANDT
EXPOBJProgress Tracking Object Indicator EXP_OBJECTCHAR2TXPDOBJEXP_OBJECTXOB
IDENTIdentification EXP_IDENTCHAR50CHAR50XPD
NMRIDUnique Number of Subitem EXP_NMRIDCHAR10EXP_NMRID
EVENTProgress Tracking Event EXP_EVENTCHAR5Assigned to domainEXP_EVENT
DTEXTEvent Description EXP_DTEXTCHAR40TEXT40
STDEVStandard Event STDEVCHAR1XFELD
XBASELINEBaseline Date XBASE_DATEDATS8DATE
BASEFIXBaseline is Set EXP_BASEFIXCHAR1XFELD
XCURRENTPlanned Date XCURR_DATEDATS8DATE
CURRFIXPlan is Set EXP_CURRFIXCHAR1XFELD
XFORECASTForecast Date XFORC_DATEDATS8DATE
FORCFIXForecast is Set EXP_FORCFIXCHAR1XFELD
XACTUALActual date XACT_DATEDATS8DATE
PERC_COMPLPercentage of Completion EXP_PERC_COMPLNUMC3NUMC3
XSCHDSCScenario Event EXP_XSCHDSCCHAR1XFELD
EXP_PRIOEvent Priority EXP_PRIONUMC2TXPDPRIOEXP_PRIO
INSP_LOTInspection Lot Number QPLOSNUMC12QALSQPLOSQLSQALS
REMARKComment on Event EXP_COMMENTCHAR40TEXT40
EBELNPurchasing Document Number EBELNCHAR10EKKOALPHAEBELNBESMEKK_C
SEQUENCERank Within a Sort Sequence EXP_SEQUENCENUMC2NUMC2
RSNUMNumber of Reservation/Dependent Requirement RSNUMNUMC10Assigned to domainRSNUMRES
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
ERDATDate on Which Record Was Created ERDATDATS8DATUM
ERUZTTime UZEITTIMS6UZEIT
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
AEUZTTime UZEITTIMS6UZEIT

Key field Non-key field



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

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

SELECT SINGLE *
FROM TXPDAT
INTO CORRESPONDING FIELDS OF WA_TXPDAT
WHERE...

How to access SAP table TXPDAT

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