EDEXTASK SAP (Data Exchange task) Table details

Dictionary Type: Table
Description: Data Exchange task




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




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

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

The EDEXTASK table consists of various fields, each holding specific information or linking keys about Data Exchange task data available in SAP. These include DEXTASKID (Internal Key for Data Exchange Task), INT_UI (Internal key for point of delivery), DEXPROC (Data Exchange Process), DEXSERVPROV (Third Party Service Provider).. 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 EDEXTASK 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
DEXTASKIDInternal Key for Data Exchange Task E_DEXTASKIDCHAR22SYSUUID_22
INT_UIInternal key for point of delivery INT_UICHAR22EUIHEADINT_POD
DEXPROCData Exchange Process E_DEXPROCCHAR10EDEXPROCE_DEXPROC
DEXSERVPROVThird Party Service Provider E_DEXSERVPROVCHAR10ESERVPROVSERVICE_PROVE_DEXSERVPROV
DEXSERVPROVSELFOwn Service Provider E_DEXSERVPROVSELFCHAR10ESERVPROVSERVICE_PROVE_DEXSERVPROVSELF
DEXSTATUSStatus in Data Exchange Process E_DEXSTATUSCHAR10EDEXSTATUSE_DEXSTATUS
CORRECTEDError in Data Exchange Task Task Corrected E_DEXERRORCORRCHAR1KENNZX
DEXTASKREASONReason for Data Exchange Task E_DEXTASKREASONCHAR1E_DEXTASKREASON
DEXDUEDATEDue Date for Data Exchange Task E_DEXDUEDATEDATS8
DEXDUETIMETime Due for Data Exchange Task E_DEXDUETIMETIMS6
DEXREFDATEFROMFrom Date for Reference Period E_DEXREFDATEFROMDATS8
DEXREFTIMEFROMFrom Time for Reference Period E_DEXREFTIMEFROMTIMS6
DEXREFDATETOTo Date for Reference Period E_DEXREFDATETODATS8
DEXREFTIMETOTime for Reference Period E_DEXREFTIMETOTIMS6
DEXAEDATDate of Last Data Exchange Task Change E_DEXAEDATDATS8DATUM
DEXAETIMTime of Last Change to Data Exchange Task E_DEXAETIMTIMS6TIMS
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
DEXCOMMFORMIDIdentification of Communication Type E_DEXCOMMFORMIDCHAR22EDEXCOMMFORMATSYSUUID_22

Key field Non-key field



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

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

SELECT SINGLE *
FROM EDEXTASK
INTO CORRESPONDING FIELDS OF WA_EDEXTASK
WHERE...

How to access SAP table EDEXTASK

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