MF60ZFFB 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 MF60ZFFB 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: Call-up of Function Modules for Allocation
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISGP_VZGPO_READ CALL FUNCTION 'ISGP_VZGPO_READ' EXPORTING I_SNUMOBJ = 'VI' I_SOBJEKT = INTRENO TABLES YVZGPO = XVZGPO EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
REAL_ESTATE_PARTNER_DATA_READ CALL FUNCTION 'REAL_ESTATE_PARTNER_DATA_READ' EXPORTING I1_ROLETYP = CON_ROLETYP-BEWERBER I_KZ_MEMORY = 'X' I_LINES = 1 I_DATE = SY-DATUM I_KZ_NO_ADDRESS = 'X' IMPORTING E_ADRS = ADRS TABLES I_TAB_VZGPO = XVZGPO EXCEPTIONS ADDRESS_NOT_FOUND = 1 PARTNER_NOT_FOUND = 2 UNKNOWN_ERROR = 3 PARTNER_RELATION_NOT_FOUND = 4 OTHERS = 5.
MV_RENT_CALCULATE CALL FUNCTION 'MV_RENT_CALCULATE' EXPORTING BUKRS = BUKRS CURRENCY_RENT = CURRENCY REF_DATUM = DATE SMENR = ME SMIVE = MV SMVANG = MA SWENR = WE IMPORTING BMA_RENT = MA_RENT BME_RENT = ME_RENT BMV_RENT = MV_RENT CURRENCY_RENT = CURRENCY E_VIKOKO = VIKOKO EXCEPTIONS KOPOS_NOT_FOUND = 01 SANLF_NOT_VALID = 02.
MV_GET_AREA CALL FUNCTION 'MV_GET_AREA' EXPORTING BUKRS = BUKRS SMENR = MENR SWENR = WENR IMPORTING PVIMI01 = RVIMI01 RMEDAT = RMEDAT EXCEPTIONS AREADESC_NOTFOUND = 01 AREATYPE_NOTFOUND = 02 AREA_NOTFOUND = 03 DATABASE_ERROR = 04 ME_NOTFOUND = 05.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.