SAPDEXIM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for ..see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter SAPDEXIM into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Export Data from Test Tables
Text Symbol: 001 = File could not be opened.
Text Symbol: 002 = Table was not filled because data already exists.
Text Symbol: 003 = File could not be created.
Text Symbol: 004 = Specified directory does not exist
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WS_DOWNLOAD ** CALL FUNCTION 'WS_DOWNLOAD' ** EXPORTING ** FILENAME = L_FILE ** FILETYPE = 'DAT' ** TABLES ** DATA_TAB = IT_EXP ** EXCEPTIONS ** FILE_OPEN_ERROR = 1 ** FILE_WRITE_ERROR = 2 ** INVALID_FILESIZE = 3 ** INVALID_TABLE_WIDTH = 4 ** INVALID_TYPE = 5 ** NO_BATCH = 6 ** UNKNOWN_ERROR = 7 ** GUI_REFUSE_FILETRANSFER = 8 ** OTHERS = 9.
WS_UPLOAD ** CALL FUNCTION 'WS_UPLOAD' ** EXPORTING ** FILENAME = L_FILE ** FILETYPE = 'DAT' ** TABLES ** DATA_TAB = IT_EXP ** EXCEPTIONS ** CONVERSION_ERROR = 1 ** FILE_OPEN_ERROR = 2 ** FILE_READ_ERROR = 3 ** INVALID_TABLE_WIDTH = 4 ** INVALID_TYPE = 5 ** NO_BATCH = 6 ** UNKNOWN_ERROR = 7 ** GUI_REFUSE_FILETRANSFER = 8 ** OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SAPDEXIM - Export Data from Test Tables SAPDEXIM - Export Data from Test Tables SAPDEMO_OO_LDB01 - Demo program: Usage of OO-wrapped logical databases SAPDEMO_OO_LDB01 - Demo program: Usage of OO-wrapped logical databases SAPDELMP - Delete superfluous physical matchcode pools SAPDELMP - Delete superfluous physical matchcode pools