SAPF140D is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program is used for displaying and deleting entries in the table for Financial Accounting correspondence requests...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 SAPF140D 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.
Selection Text: XTESTL = Test run
Selection Text: XPROTO = Log
Selection Text: XNGEDR = Entries without print date
Selection Text: XGEDRU = Entries with print date
Selection Text: UZEIT = Time of request
Selection Text: USNAM = User
Selection Text: KONTO = Open item account
Selection Text: KOART = Account type
Selection Text: GJAHR = Fiscal year
Selection Text: EVENT = Correspondence
Selection Text: ERLDT = Print Date
Selection Text: DATUM = Date of request
Selection Text: CAJON = Cash journal number
Selection Text: BUKRS = Company code
Selection Text: BELNR = Document number
Title: Delete Correspondence Requests
Text Symbol: 021 = items
Text Symbol: 022 = Cash jour.num.
Text Symbol: 020 = Document included in resetting cleared
Text Symbol: 018 = No output
Text Symbol: 014 = No output
Text Symbol: 013 = No.of letters
Text Symbol: 012 = Output
Text Symbol: 011 = Delete
Text Symbol: 010 = Language
Text Symbol: 009 = Indiv.text
Text Symbol: 008 = Correspondence request generated by report
Text Symbol: 007 = Parameters
Text Symbol: 006 = Text for the correspondence type does not exist in the logon language
Text Symbol: 005 = Corr. CoCd Acct/doc. User Date Time Print date
Text Symbol: 004 = Company code
Text Symbol: 003 = Correspondence
Text Symbol: 002 = Following correspondence requests were deleted from table BKORM
Text Symbol: 001 = Following correspondence requests were selected by the deletion program
Text Symbol: 110 = adv.
Text Symbol: 202 = Vend;;
Text Symbol: 201 = Cust;;
INCLUDE RFKORI00.
No SAP DATABASE tables are accessed within this REPORT code!
BUKRS_AUTHORITY_CHECK call function 'BUKRS_AUTHORITY_CHECK' exporting xdatabase = 'B' tables xbukreis = bukrs.
DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING ID = 'FIKO' LANGUAGE = HLTDNAM-SPRAS NAME = HTDNAME OBJECT = 'BKORM' SAVEMODE_DIRECT = 'X' EXCEPTIONS NOT_FOUND = 04.
DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING ID = 'FIKO' LANGUAGE = BKORM-PARAM+78(1) NAME = HTDNAME OBJECT = 'BKORM' SAVEMODE_DIRECT = 'X' EXCEPTIONS NOT_FOUND = 04.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.