RFVWERST 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 RFVWERST 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: P_PERIOD = Posting period
Selection Text: P_PODATE = D Posting date
Selection Text: P_RANL = ID number of exercised right
Selection Text: P_REASON = TR reversal reason
Selection Text: P_SIMFLG = Test run
Selection Text: P_STTYPE = D Reversal only in TR
Selection Text: S_DEPOT = D Securities account
Selection Text: P_FIREA = FI reversal reason
Selection Text: P_BUKRS = D Company code
Selection Text: P_DATUM = D Key date
Selection Text: P_DODATE = D Document date
Title: Securities: Reverse Security Right
Text Symbol: 001 = General selections
Text Symbol: 002 = Security rights parameters
Text Symbol: 003 = Posting control
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CUSTOMIZED_MESSAGE CALL FUNCTION 'CUSTOMIZED_MESSAGE' EXPORTING i_arbgb = 'T0' i_dtype = 'E' i_msgnr = '881'.
FVER_REVERSE CALL FUNCTION 'FVER_REVERSE' EXPORTING i_bukrs = p_bukrs i_ranl = p_ranl i_datum = p_datum i_reason = p_reason i_firea = p_firea i_podate = p_podate i_period = p_period i_dodate = p_dodate i_flg_simu = p_simflg i_sttype = p_sttype TABLES i_tab_depot = s_depot.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.