KONVERTER_TEST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter KONVERTER_TEST 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: Test of the CAIIA converters call
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_DOCUMENT_GETDETAIL2 CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2' EXPORTING documenttype = lf_doctype documentnumber = lf_docnumber documentpart = lf_docpart documentversion = lf_docversion * GETOBJECTLINKS = ' ' * GETCOMPONENTS = ' ' * GETSTATUSLOG = ' ' * GETLONGTEXTS = ' ' getactivefiles = 'X' IMPORTING documentdata = documentdata return = ls_return TABLES * OBJECTLINKS = * DOCUMENTDESCRIPTIONS = * LONGTEXTS = * STATUSLOG = documentfiles = lt_files * COMPONENTS = .
SCMS_FE_SET_REG_SERVER CALL FUNCTION 'SCMS_FE_SET_REG_SERVER' EXPORTING destname = 'SAPHTTP' destination = http_dst.
SCMS_FE_SET_REG_SERVER CALL FUNCTION 'SCMS_FE_SET_REG_SERVER' EXPORTING destname = 'SAPFTP' destination = ftp_dst.
SCMS_DOC_READ_FILE CALL FUNCTION 'SCMS_DOC_READ_FILE' EXPORTING * MANDT = SY-MANDT stor_cat = lt_files-storagecategory * CREP_ID = ' ' doc_id = lt_files-file_id comp_id = lt_files-docfile path = '/cad/data/catia/sap/konv2.model'
SCMS_FE_UNSET_REG_SERVER CALL FUNCTION 'SCMS_FE_UNSET_REG_SERVER' EXPORTING destname = 'SAPHTTP' destination = http_dst.
SCMS_FE_UNSET_REG_SERVER CALL FUNCTION 'SCMS_FE_UNSET_REG_SERVER' EXPORTING destname = 'SAPFTP' destination = ftp_dst.
EAI_KONVERTER *call function 'EAI_KONVERTER' * destination 'IW1027_S' * exporting FILENAME = file * importing RESPTEXT = testr.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.