RFVISME0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report either creates a list of rental units or a list of offers with details of the rental units...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFVISME0 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: SO_SWENR = Business entity
Selection Text: SO_SVERK = Transport connections
Selection Text: SO_STOCK = Floor
Selection Text: SO_SOBJL = Location
Selection Text: SO_SNUNR = Usage type
Selection Text: SO_SMENR = Rental unit
Selection Text: SO_MIETE = Rent total amount
Selection Text: SO_GBART = Building type
Selection Text: SO_FGES = Total area
Selection Text: SO_BUKRS = Company code
Selection Text: SO_BALKO = Balcony
Selection Text: SO_AZIMM = Number of rooms
Selection Text: SO_AZIMH = Number of half rooms
Title: Rental Units
Text Symbol: WE1 = Business entity
Text Symbol: V01 = Rental units proposal list
Text Symbol: STN = Status text could not be determined
Text Symbol: STI = System status
Text Symbol: STA = User status
Text Symbol: MST = Rental unit status
Text Symbol: ME1 = Rental unit
Text Symbol: AMA = Offers
Text Symbol: ADR = Address
Text Symbol: 540 = Rental period
Text Symbol: 530 = Valid
Text Symbol: 520 = Status
Text Symbol: 510 = Offer
Text Symbol: 500 = Offers
Text Symbol: 060 = Subs.rentl
Text Symbol: 052 = Total rent amount
Text Symbol: 051 = Unoccupied (from - to)
Text Symbol: 050 = Next vacancy
Text Symbol: 040 = Usage type
Text Symbol: 031 = Rental unit
Text Symbol: 030 = RU
Text Symbol: 022 = Bus. entity
Text Symbol: 021 = Business entity
Text Symbol: 020 = Business entity
INCLUDE RFVICNSV.
INCLUDE RFVICNGP.
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = '63' MSGTY = 'I' MSGV1 = PARAM1 MSGV2 = PARAM2 MSGV3 = PARAM3 TXTNR = '538' EXCEPTIONS MESSAGE_TYPE_NOT_VALID = 1 NOT_ACTIVE = 2 OTHERS = 3.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = '63' MSGTY = 'I' TXTNR = '548' MSGV1 = PARAM3.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = MSG_ID MSGTY = MSG_TYPE MSGV1 = MSG_V1 MSGV2 = MSG_V2 MSGV3 = MSG_V3 MSGV4 = MSG_V4 TXTNR = MSG_NO EXCEPTIONS MESSAGE_TYPE_NOT_VALID = 1 NOT_ACTIVE = 2 OTHERS = 3.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = TEXT-500 SEND_IF_ONE = 'X' SHOW_LINNO = ' ' EXCEPTIONS INCONSISTENT_RANGE = 1 NO_MESSAGES = 2 OTHERS = 3.
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING FLG_USER_STAT = 'X' OBJNR = XVIMI01-SNKS ONLY_ACTIVE = 'X' SPRAS = SY-LANGU IMPORTING LINE = SYS_STAT_TXT USER_LINE = ANW_STAT_TXT EXCEPTIONS OBJECT_NOT_FOUND = 01.
ME_GET_AREA CALL FUNCTION 'ME_GET_AREA' EXPORTING I_INTRENO = XVIMI01-INTRENO TABLES T_VIOB40 = IVIOB40 EXCEPTIONS ERROR_READING_OBJECT = 1 OTHERS = 2.
MV_RENT_CALCULATE CALL FUNCTION 'MV_RENT_CALCULATE' EXPORTING BUKRS = BUKRS CURRENCY_RENT = CURRENCY REF_DATUM = DATE SMENR = ME SMIVE = MV SWENR = WE IMPORTING BME_RENT = ME_RENT BMV_RENT = MV_RENT CURRENCY_RENT = CURRENCY NO_KOKO_FOR_REFDATUM = FLG_KOKO_DATE E_VIKOKO = VIKOKO EXCEPTIONS KOPOS_NOT_FOUND = 01 SANLF_NOT_VALID = 02.
ADDRESS_ASSIGN CALL FUNCTION 'ADDRESS_ASSIGN' EXPORTING ADR_IN = ADR_NR ADRZUS_FUNCTION = 'X' " Ohne Dynpro, ohne Plausi FLG_SAVE_IN_UPDT = 'X' " Sichern in Update-Task FUNCTION = 'P' "Bereitstellen OBJEKTTYP = K_OBJTYP_ME IMPORTING ADRWA_OUT = I_SANS1 ADRZUS_OUT = I_SANO1 EXCEPTIONS ADDRESS_NOT_FOUND = 1 NO_ADDRESS_ASSIGNED = 2 ILLEGAL_FUNCTION = 3.
ADDRESS_TEXT CALL FUNCTION 'ADDRESS_TEXT' EXPORTING SANS1 = I_SANS1 IMPORTING ADR_TEXT = RF60E-ADRESSE.
STATUS_CHECK CALL FUNCTION 'STATUS_CHECK' EXPORTING BYPASS_BUFFER = ' ' CLIENT = SY-MANDT OBJNR = SO_OBJNR-LOW STATUS = CON_ISTAT-LOESCHVORMERK EXCEPTIONS OBJECT_NOT_FOUND = 01 STATUS_NOT_ACTIVE = 02.
MV_GET_AREA CALL FUNCTION 'MV_GET_AREA' EXPORTING BUKRS = XVIMI01-BUKRS SMENR = XVIMI01-SMENR SWENR = XVIMI01-SWENR IMPORTING RMEDAT = RMEDAT EXCEPTIONS AREADESC_NOTFOUND = 01 AREATYPE_NOTFOUND = 02 AREA_NOTFOUND = 03 DATABASE_ERROR = 04 ME_NOTFOUND = 05.
FVMV_CALL_DISPLAY_ANG CALL FUNCTION 'FVMV_CALL_DISPLAY_ANG' EXPORTING BUKRS = P_VIMI33_BUKRS SMVANG = P_VIMI33_SMVANG EXCEPTIONS OTHERS = 1.
FVST_STATUS_CHECK_AND_SET CALL FUNCTION 'FVST_STATUS_CHECK_AND_SET' EXPORTING RFVSTIMP = LOC_RFVSTIMP EXCEPTIONS OTHERS = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.