CREATE_FINSTA 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 CREATE_FINSTA 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: AZNUM = Statement Number
Selection Text: BKID = Bank ID
Selection Text: BUDAT = Posting Date
Selection Text: BUKRS = Company Code
Selection Text: KTID = Account ID
Selection Text: UMSFILE = Turnover File
Selection Text: AZDAT = Statement Date
Selection Text: AZFILE = Statement File
Title: Program to Create a TXT-FINSTA
Text Symbol: 014 = not in table T001
Text Symbol: 015 = not in table T012
Text Symbol: 016 = House bk
Text Symbol: 006 = No data for
Text Symbol: 005 = is not in table T012K
Text Symbol: 004 = House bank key
Text Symbol: 003 = already exists in table T028A
Text Symbol: 002 = Statement no.
Text Symbol: 001 = c:\temp\...
Text Symbol: 013 = Company code
Text Symbol: 012 = Time:
Text Symbol: 011 = Created
Text Symbol: 010 = file
Text Symbol: 008 = Error while opening
Text Symbol: 007 = bank statement in table FINSTA_POS
INCLUDE RFEBKAT9 .
No SAP DATABASE tables are accessed within this REPORT code!
STRING_LENGTH * CALL FUNCTION 'STRING_LENGTH' * EXPORTING STRING = UMSATZ * IMPORTING LENGTH = UMSATZ_LEN.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING filename = l_umsfile_string TABLES data_tab = umsatz EXCEPTIONS OTHERS = 1.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING filename = l_azfile_string TABLES data_tab = umsatz EXCEPTIONS OTHERS = 1.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING filename = l_azfile_string TABLES data_tab = auszug EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.