J_3RFREVAL_FORMS 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 J_3RFREVAL_FORMS 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.
Title: Include J_3RFREVAL_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = msgid "'J3REVAL' msgty = msgty msgv1 = msgv1 msgv2 = msgv2 msgv3 = msgv3 msgv4 = msgv4 txtnr = msgno zeile = error_count EXCEPTIONS OTHERS = 1.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
FI_GL_ACCOUNT_DATA CALL FUNCTION 'FI_GL_ACCOUNT_DATA' EXPORTING i_bukrs = ls_accit-bukrs i_saknr = ls_accit-hkont IMPORTING e_sako = lf_sako.
TABW_READ CALL FUNCTION 'TABW_READ' EXPORTING f_tabw = lf_tabw IMPORTING f_tabw = lf_tabw e_tabwg = lf_tabwg.
FIAA_EVALUATE_FSTATUS CALL FUNCTION 'FIAA_EVALUATE_FSTATUS' EXPORTING i_vorgn = '02' i_afabe = rpafabe TABLES ct_accit = lt_accit ct_accit_amaddacc = lt_accit_amaddacc EXCEPTIONS OTHERS = 2.
BAPI_COMPANYCODE_GET_PERIOD CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD' EXPORTING COMPANYCODEID = rpbukrs POSTING_DATE = postdate IMPORTING FISCAL_YEAR = fyear FISCAL_PERIOD = fper * RETURN = .
FIAA_UKV_ACTIV CALL FUNCTION 'FIAA_UKV_ACTIV' EXPORTING i_bukrs = v_bukrs IMPORTING e_ukv_aktiv = flg_ukv_aktiv EXCEPTIONS OTHERS = 1.
T093_ACCOBJ_READ CALL FUNCTION 'T093_ACCOBJ_READ' EXPORTING i_activity_status = 'A' * I_SPRAS = i_aaaccobj = 'FKBER' IMPORTING * ET_T093_ACCOBJ = * ET_T093_ACCOBJT = es_t093_accobj = ls_t093_accobj * ES_T093_ACCOBJT = EXCEPTIONS no_text_in_sel_language = 1 OTHERS = 2 .
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = rpyear i_periv = zperiv i_poper = mmm IMPORTING e_date = first_day_in_year EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = rpyear i_periv = zperiv i_poper = mmm IMPORTING e_date = last_day_in_year EXCEPTIONS input_false = 1 t009_notfound = 2 t009b_notfound = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.