MF77AI20 is a standard ABAP INCLUDE 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 MF77AI20 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_PARTNER_BANKACCOUNT_CHECK CALL FUNCTION 'TB_PARTNER_BANKACCOUNT_CHECK' EXPORTING BANKTYPE = VTXI2-RPBANK PARTNER = VTBFHA-KONTRH.
TB_PARTNER_BANKACCOUNT_VALUES CALL FUNCTION 'TB_PARTNER_BANKACCOUNT_VALUES' EXPORTING DISPLAY = FLAG_DISPLAY PARTNER = VTBFHA-KONTRH IMPORTING SELECTED_VALUE = VTXI2-RPBANK.
PAV_SELECT_BANK * CALL FUNCTION 'PAV_SELECT_BANK' * EXPORTING * AUSW_KZ = ' ' * BANKL = ' ' * BANKS = ' ' * BVTYP = VTXI2-RPBANK * PARTNR = VTBFHA-KONTRH * XEZER = ' ' * TABLES * SPBB1_OUT = I_SPBB1 * EXCEPTIONS * ILLEGAL_AUSW = 01 * NO_RECORD_FOUND = 02 * NO_RECORD_SELECTED = 03 * PARTNER_NOT_FOUND = 04 * SELECT_ERROR = 05.
FTR_CORR_PROCESS_CHECK CALL FUNCTION 'FTR_CORR_PROCESS_CHECK' EXPORTING I_BUKRS = vtb_header-bukrs I_RFHA = vtb_header-rfha I_RFHAZU = vtb_header-rfhazu I_ROFHAZU = vtbfhazu-rofhazu I_SFGZUSTT = vtb_header-sfgzustt I_SFUNKTL = vtbfhazu-sfunktl I_SFUNKTV = vtbfhazu-sfunktv * I_MODE = 'STANDARD' .
FTR_CORR_DETERMINE CALL FUNCTION 'FTR_CORR_DETERMINE' EXPORTING I_BUKRS = VTB_HEADER-BUKRS I_RFHA = VTB_HEADER-RFHA I_SGSART = VTB_HEADER-SGSART I_SFHAART = VTB_HEADER-SFHAART I_KONTRH = VTBFHA-KONTRH I_RFHAZU = VTB_HEADER-RFHAZU I_ROFHAZU = VTBFHAZU-ROFHAZU I_SFGZUSTT = VTB_HEADER-SFGZUSTT I_SFUNKTL = VTBFHAZU-SFUNKTL I_SFUNKTV = VTBFHAZU-SFUNKTV * I_CORTYP = * NO_POPUPS = ' ' IMPORTING E_TBCO_STATE_CON = HLP_CONFIRM E_TBCO_STATE_RECON = HLP_RECONFIRM EXCEPTIONS INVALID = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.