RFVICNIF 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 RFVICNIF 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING OBJNR = UV_OBJNR IMPORTING * E_IONRA = * E_KEY = * E_TEXT = * IDENTIFICATION = * IDENT_OBART = IDENT_OBJID = STAT-OBJID-TEXT * IDENT_TXT10 = IDENT_TXT15 = STAT-OBJID-TYP * IDENT_TXT20 = .
REAL_ESTATE_CALC_DATE_SLST CALL FUNCTION 'REAL_ESTATE_CALC_DATE_SLST' EXPORTING I_DATE = LOC_DATE_IN * I_DAY_OFFSET = 0 * I_MON_OFFSET = 0 IMPORTING * e_date_post_end = E_DATE_MONTH_BEG = LOC_DATE_OUT * e_date_month_end = * e_month = * e_year = EXCEPTIONS ERROR = 1 OTHERS = 2.
FI_COMPANY_CODE_CHECK CALL FUNCTION 'FI_COMPANY_CODE_CHECK' EXPORTING I_BUKRS = I_BUKRS EXCEPTIONS COMPANY_CODE = 1 OTHERS = 2 .
RE_FI_COMPANY_CODE_DATA CALL FUNCTION 'RE_FI_COMPANY_CODE_DATA' EXPORTING I_BUKRS = UV_BUKRS IMPORTING E_T001 = LOC_T001 EXCEPTIONS SYSTEM_ERROR = 1 OTHERS = 2.
FI_PERIOD_DETERMINE CALL FUNCTION 'FI_PERIOD_DETERMINE' EXPORTING I_BUDAT = UV_BUDAT I_BUKRS = LOC_T001-BUKRS I_PERIV = LOC_T001-PERIV I_MONAT = UC_PERIOD IMPORTING E_GJAHR = LOC_GJAHR E_MONAT = UC_PERIOD EXCEPTIONS FISCAL_YEAR = 1 PERIOD = 2 PERIOD_VERSION = 3 POSTING_PERIOD = 4 SPECIAL_PERIOD = 5 VERSION = 6 POSTING_DATE = 7 OTHERS = 8.
STATUS_CHECK CALL FUNCTION 'STATUS_CHECK' EXPORTING * BYPASS_BUFFER = ' ' * CLIENT = SY-MANDT OBJNR = UV_OBJNR STATUS = UV_STATUS EXCEPTIONS OBJECT_NOT_FOUND = 1 STATUS_NOT_ACTIVE = 2 OTHERS = 3.
FVST_STATUS_CHECK_AND_SET CALL FUNCTION 'FVST_STATUS_CHECK_AND_SET' EXPORTING RFVSTIMP = RFVSTIMP IMPORTING WARNING_OCCURED = LOC_WARN EXCEPTIONS ALLOWED_WITH_WARNING = 1 OTHERS = 2.
FVAU_AUTHORITY_CHECK CALL FUNCTION 'FVAU_AUTHORITY_CHECK' EXPORTING OBJECT = STAT-AUTH_OBJECT AUTHPAR = AUTHPAR EXCEPTIONS NO_AUTHORITY = 1 INVALID_OBJECT = 2 OTHERS = 3.
RE_CASHFLOW_FORECAST CALL FUNCTION 'RE_CASHFLOW_FORECAST' EXPORTING iv_post = iv_post iv_compare = space TABLES it_gvibepp_new = lt_gvibepp_new it_gvibepp_old = lt_gvibepp_new EXCEPTIONS OTHERS = 1.
FVSCHEDMAN_INIT_AND_COMMIT CALL FUNCTION 'FVSCHEDMAN_INIT_AND_COMMIT' EXPORTING i_tcode = sy-tcode * Korrektur Anbindung SCHEDULE MANAGER i_witem = wf_witem i_testflag = stat-simul.
FVSCHEDMAN_CLOSE_AND_COMMIT CALL FUNCTION 'FVSCHEDMAN_CLOSE_AND_COMMIT' EXPORTING i_applstat = l_applstat * Korrektur Anbindung Schedule Manager i_witem = WF_WITEM i_okey = WF_OKEY TABLES t_spool = spool_tab EXCEPTIONS key_is_missing = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = loc_percentage text = loc_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.