RFEBLB00_NACC 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 RFEBLB00_NACC 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: VERFA = Processes
Selection Text: VALUT_ON = Assign value date to account
Selection Text: P_STATIK = Print statistics
Selection Text: P_MODE = Mode
Selection Text: P_FUNCT = Function
Selection Text: PCUPLOAD = PC upload
Selection Text: PA_XINVC = Enhanced invoice no. check
Selection Text: PA_PRCTR = Profit center
Selection Text: PA_PALGR = Algthm: checks with advice
Selection Text: PA_PALGN = Algthm: checks without advice
Selection Text: PA_GSBER = Business area
Selection Text: PA_FILE = Lockbox file
Selection Text: PA_FIINV = Invoice numbers
Selection Text: FORMT = Input record format
Selection Text: EINLESEN = Import into bank data storage
Title: Main lockbox program
Text Symbol: 025 = Itm/batch
Text Symbol: 024 = Acct. assgts
Text Symbol: 023 = Deduction amount;;
Text Symbol: 022 = Output control
Text Symbol: 021 = Processing parameters
Text Symbol: 020 = File specs
Text Symbol: 019 = Amount;;
Text Symbol: 018 = Document ;;
Text Symbol: 017 = Customer
Text Symbol: 016 = Check number ;;
Text Symbol: 015 = ID
Text Symbol: 014 = Currency;;
Text Symbol: 013 = Pay. date ;;
Text Symbol: 012 = Origin ;;
Text Symbol: 011 = Destination ;;
Text Symbol: 009 = Lockbox ;;
Text Symbol: 003 = Exptn list
Text Symbol: 002 = Log of imported checks
Text Symbol: 001 = LOCKBOX
INCLUDE RFEBLB03_NACC.
No SAP DATABASE tables are accessed within this REPORT code!
KD_GET_FILENAME_ON_F4 CALL FUNCTION 'KD_GET_FILENAME_ON_F4' EXPORTING MASK = ',Lockbox,*.txt'
WS_UPLOAD * CALL FUNCTION 'WS_UPLOAD' * EXPORTING FILENAME = FILENAME * FILETYPE = 'ASC' * TABLES * DATA_TAB = FILE * EXCEPTIONS * FILE_OPEN_ERROR = 1 * FILE_READ_ERROR = 2.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING NO_DIALOG = 'X' LIST_NAME = LIST_NAME MODE = 'CURRENT' IMPORTING OUT_PARAMETERS = PRI_PARAM OUT_ARCHIVE_PARAMETERS = ARC_PARAM.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.