RFVISBW1 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 RFVISBW1 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FOW7 - Overview of Rental Requests
FOW8 - Rent requests evaluation
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: SO_BSTAT = Processing status
Selection Text: SO_BWTYP = Application category
Selection Text: SO_CHILD = No.of children
Selection Text: SO_DBEZA = Occup.from
Selection Text: SO_DEINB = Applic.date of receipt
Selection Text: SO_DEING = Rent request date of receipt
Selection Text: SO_DENDB = D Appl.valid to
Selection Text: SO_DENDG = D Appl.valid to
Selection Text: SO_FLMIN = Area
Selection Text: SO_GBART = Type of building
Selection Text: SO_HOUSE = No.of persons in household
Selection Text: SO_JNET = Net income (year)
Selection Text: SO_MARIT = Marital status
Selection Text: SO_MIETE = Rent amount
Selection Text: SO_MNET = Net income (month)
Selection Text: SO_NATIO = Nationality
Selection Text: SO_PANR = Applicant
Selection Text: SO_SALTN = Reference type
Selection Text: SO_SLAGE = Location
Selection Text: SO_SNUNR = Usage type
Selection Text: SO_SOBJL = Town location
Selection Text: SO_STMVA = Offer status
Selection Text: SO_SVERK = Transport conn.
Selection Text: SO_VORKZ = Preselection Indicator
Selection Text: SO_BONI = Cred. stndng appl.
Selection Text: SO_BEAKZ = Processing indicator
Selection Text: SO_AZIMV = Number of rooms
Selection Text: R_BEWSTA = Application status
Selection Text: R_BEWNR = Application
Selection Text: P_FLG0A = Appl.still without offer
Selection Text: P_ACTMVA = Appl.with active offers
Title: Program RFVISBW1
Text Symbol: 010 = Application
Text Symbol: 020 = Address
Text Symbol: 070 = Cred. stndng
Text Symbol: 080 = Off.
Text Symbol: 110 = RentalReq.
Text Symbol: 120 = Date of receipt
INCLUDE RFVICNGP.
INCLUDE IRSELPAR.
INCLUDE IFRE_CHECK_RE_CLASSIC.
No SAP DATABASE tables are accessed within this REPORT code!
FVPR_GET_PARTNER_LIST_1 CALL FUNCTION 'FVPR_GET_PARTNER_LIST_1' TABLES * T_PARTNR_OUT = T_SEL_OPT_ROLETYP_IN = SO_ROLE T_SEL_OPT_PARTNR = SO_PANR EXCEPTIONS OTHERS = 1.
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.
ISGP_VZGPO_READ CALL FUNCTION 'ISGP_VZGPO_READ' EXPORTING I_SNUMOBJ = 'VI' I_SOBJEKT = INTRENO TABLES YVZGPO = XVZGPO EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
FVMV_CALL_DISPLAY_BEW CALL FUNCTION 'FVMV_CALL_DISPLAY_BEW' EXPORTING SBWNR = VIMI11-SBWNR SMIWUNR = XVIMI12-SMIWUNR SBWTYP = XVIMI11-SBWTYP IMPORTING OBJEKT_CHANGED = FLAG_OBJECT_CHANGED EXCEPTIONS ERROR = 1 OTHERS = 2.
FVMV_CALL_CREATE_BEW CALL FUNCTION 'FVMV_CALL_CREATE_BEW' EXPORTING SBWNR = VIMI11-SBWNR SMIWUNR = XVIMI12-SMIWUNR SBWTYP = XVIMI11-SBWTYP IMPORTING OBJEKT_CHANGED = FLAG_OBJECT_CHANGED EXCEPTIONS ERROR = 1 OTHERS = 2.
FVMV_CALL_CHANGE_BEW CALL FUNCTION 'FVMV_CALL_CHANGE_BEW' EXPORTING SBWNR = VIMI11-SBWNR SMIWUNR = XVIMI12-SMIWUNR SBWTYP = XVIMI11-SBWTYP IMPORTING OBJEKT_CHANGED = FLAG_OBJECT_CHANGED EXCEPTIONS ERROR = 1 OTHERS = 2.
FVMV_CALL_SEARCH_BW_ME CALL FUNCTION 'FVMV_CALL_SEARCH_BW_ME' EXPORTING SBWNR = VIMI11-SBWNR SMIWUNR = XVIMI12-SMIWUNR IMPORTING OBJEKT_CHANGED = FLAG_OBJECT_CHANGED EXCEPTIONS ERROR = 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.