RFVIAOMATCH1 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 RFVIAOMATCH1 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_ZIPCO = D Postal Code
Selection Text: SO_TERF = D Time of initial entry
Selection Text: SO_TBEAR = D Time of last edit
Selection Text: SO_SPART = D Partner ID
Selection Text: SO_SOBJT = D Real estate category
Selection Text: SO_SIDLS = D Local ID
Selection Text: SO_SIDGS = D Global ID
Selection Text: SO_SCOUN = D Country key
Selection Text: SO_SAQUI = D Acquisition form
Selection Text: SO_LOCAT = D Location
Selection Text: SO_DTILL = D Vacant to
Selection Text: SO_DFROM = D Vacant from
Selection Text: SO_DERF = D First Entered On
Selection Text: SO_DBEAR = D Last processing
Selection Text: PA_UPDFV = Update list of favorites
Selection Text: PA_SENDM = Send e-mail
Selection Text: PA_JAUTI = Only Requests w/ Notification
Selection Text: PA_CORRE = Minimum Concordance [%]
Text Symbol: T03 = Notifying
Text Symbol: T02 = Searching
Text Symbol: T01 = Offer objects are being imported
Text Symbol: SUP = Object data
Text Symbol: SEL = Selection: Offer objects
Text Symbol: PAR = Additional parameters
Text Symbol: INF = Notification Forms
Text Symbol: ADM = Access data
INCLUDE IFVIMCRO.
INCLUDE IFVIAOTYPES.
INCLUDE IFVIAOCONST.
INCLUDE IFVIAOMATCH.
No SAP DATABASE tables are accessed within this REPORT code!
RE_SEARCH_MATCH_INIT CALL FUNCTION 'RE_SEARCH_MATCH_INIT' EXPORTING iv_web_mode = ' '.
RE_SEARCH_MATCH_SEARCH CALL FUNCTION 'RE_SEARCH_MATCH_SEARCH' EXPORTING iv_viar01 = lr_viar01 iv_load_viar01 = 'X' iv_ex_flaglist = lr_flaglist iv_fill_addons = ' ' IMPORTING et_viar02i = lt_viar02i EXCEPTIONS OTHERS = 1.
RE_SEARCH_DEMAND_LOAD CALL FUNCTION 'RE_SEARCH_DEMAND_LOAD' EXPORTING iv_demandid = lr_matchrec-demandid iv_display = 'X' IMPORTING ev_viar02 = lr_viar02i-dbpart EXCEPTIONS OTHERS = 1.
RE_SEARCH_PARTNER_LOAD CALL FUNCTION 'RE_SEARCH_PARTNER_LOAD' EXPORTING iv_spartid = lr_viar02i-spartid iv_display = 'X' IMPORTING ev_viar03 = lr_viar03i-dbpart EXCEPTIONS OTHERS = 1.
RE_SEARCH_SUPPLY_LOAD CALL FUNCTION 'RE_SEARCH_SUPPLY_LOAD' EXPORTING iv_supplyid = lr_matchrec-supplyid iv_display = 'X' iv_get_mime = ' ' IMPORTING ev_viar01 = lr_viar01i-dbpart 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.