RFKKABS30 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program selects all FI-CA documents posted under a specific reconciliation key...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 RFKKABS30 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FPT5 - Display documents for reconcil. key
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_EXP = List Can Be Expanded
Selection Text: P_FIKPY = Key for Mass Run
Selection Text: SO_BUDAT = Posting Date in the Document
Selection Text: SO_BUKRS = Company Code
Selection Text: SO_FIKEY = Reconciliation Key
Selection Text: SO_GSBER = Business Area
Selection Text: SO_HKONT = G/L Account
Selection Text: SO_WAERS = Currency Key
Selection Text: P_ARCH = D .
Title: Itemization for Posting Totals
Text Symbol: 001 = Selections
Text Symbol: 002 = Reconciliation Key Selection
Text Symbol: 003 = FI-CA totals records are selected
Text Symbol: 004 = FI-CA documents are selected
Text Symbol: 005 = The list is being prepared
Text Symbol: 006 = Display Option
Text Symbol: 007 = Background Processing Options
Text Symbol: E01 = Company Code
Text Symbol: E02 = Display
INCLUDE RFKKABS30TOP . "
INCLUDE RFKKABS30F01.
INCLUDE RFKKABS30F02.
No SAP DATABASE tables are accessed within this REPORT code!
FKK_SCHEDMAN_INIT CALL FUNCTION 'FKK_SCHEDMAN_INIT' EXPORTING i_repid = sy-repid i_tcode = sy-tcode i_wfitem = wf_witem i_wflist = wf_wlist IMPORTING e_f_schedman_key = g_schedman_key.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-003.
FKK_FIKEY_READ CALL FUNCTION 'FKK_FIKEY_READ' TABLES t_fikpy = d_fikey t_out_fikeytab = it_fikeystruct EXCEPTIONS no_select_restriction = 1 no_data_selected = 2.
FKK_FICA_TOTALS_SELECT CALL FUNCTION 'FKK_FICA_TOTALS_SELECT' EXPORTING i_gl_posted_only = space ix_batch_read_archive = p_arch "note 1542505 TABLES t_fikey = so_fikey t_bukrs = so_bukrs t_hkont = so_hkont t_budat = so_budat t_waers = so_waers t_gsber = so_gsber t_out_sum = t_help_sum t_out_nokschl = abs_fikey EXCEPTIONS no_select_restriction = 1 no_data_selected = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-004.
FKK_DOC_TO_TOTALS_RECONCILIATE CALL FUNCTION 'FKK_DOC_TO_TOTALS_RECONCILIATE' TABLES t_bukrs = so_bukrs t_hkont = so_hkont t_budat = so_budat t_waers = so_waers t_gsber = so_gsber t_in_sum = t_help_sum t_in_nokschl = abs_fikey t_out_it = t_help_items EXCEPTIONS no_select_restriction = 1 no_data_selected = 2 selection_cancelled = 3.
FKK_DOC_TO_TOTALS_RECONCILIATE CALL FUNCTION 'FKK_DOC_TO_TOTALS_RECONCILIATE' EXPORTING ix_batch_read_archive = p_arch "Note 1494615 TABLES t_bukrs = so_bukrs t_hkont = so_hkont t_budat = so_budat t_waers = so_waers t_gsber = so_gsber t_in_sum = t_help_sum t_in_nokschl = abs_fikey t_out_it = t_help_items EXCEPTIONS no_select_restriction = 1 no_data_selected = 2 selection_cancelled = 3.
FKK_SCHEDMAN_CLOSE CALL FUNCTION 'FKK_SCHEDMAN_CLOSE' EXPORTING i_f_schedman_key = g_schedman_key i_wfitem = wf_witem i_wfokey = wf_okey i_aplstat = g_aplstat i_cnt_obj = sy-tfill.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-005.
FKK_GL_DRILL_DOWN_ALV CALL FUNCTION 'FKK_GL_DRILL_DOWN_ALV' EXPORTING repid = repid xmass = xmass xexp = p_exp TABLES t_abs_sum = abs_sum t_abs_items = abs_items.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.