RPCADJK0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Reconciliation report for adjustments This report looks at adjustments entered through the Adjustment Workbench and the Year-End Adjustment Workbench and determines whether they have already been accounted for in a payroll run...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 RPCADJK0 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: SL_SUBTY = Subtype
Title: Audit report for adjustments
Text Symbol: 038 = 0221 Adj.amount
Text Symbol: 039 = RT Adj.amount
Text Symbol: 040 = Difference
Text Symbol: 041 = 0221
Text Symbol: 042 = Date:
Text Symbol: 045 = PAGE
Text Symbol: 046 = Wage Type Totals :
Text Symbol: AC0 = Select payroll status:
Text Symbol: AC1 = unaccounted
Text Symbol: AC2 = accounted
Text Symbol: AC3 = all
Text Symbol: AC4 = no payroll results
Text Symbol: AC5 = Accounted count
Text Symbol: AC6 = Unaccounted count
Text Symbol: AC7 = No payroll results count
Text Symbol: LG0 = Select log detail level
Text Symbol: LG1 = Display status overview
Text Symbol: LG2 = Display payroll adjustment overview
Text Symbol: LG3 = Display master data-payroll results overview
Text Symbol: S01 = Infotype selection
Text Symbol: S02 = Detail list selection
Text Symbol: S04 = detail view
Text Symbol: S05 = status view
Text Symbol: S06 = totals view
Text Symbol: V32 = Old CRT
Text Symbol: V33 = Old TCRT
Text Symbol: V34 = RT
Text Symbol: V35 = New CRT
Text Symbol: V36 = New TCRT
Text Symbol: V38 = 0221
Text Symbol: 001 = Pers.No
Text Symbol: 002 = Full name
Text Symbol: 004 = Cheque date
Text Symbol: 005 = Totals By Province:
Text Symbol: 006 = Totals By Business Number:
Text Symbol: 007 = Adjustment Status
INCLUDE RPCADJKD_ALV. "DATA DEFINTIONS
No SAP DATABASE tables are accessed within this REPORT code!
RP_GET_CURRENCY CALL FUNCTION 'RP_GET_CURRENCY' EXPORTING molga = calcmolga IMPORTING waers = calc_currency EXCEPTIONS OTHERS = 1.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = gc_pf_status_form is_layout = gs_layout it_fieldcat = gt_fieldcat it_events = gt_events i_tabname_header = gc_tablename1 i_tabname_item = gc_tablename2 is_keyinfo = ls_keyinfo TABLES t_outtab_header = gt_adj_data_tab t_outtab_item = gt_adjpay_tab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_structure_name = iv_structure CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = gc_pf_status_form is_layout = gs_layout it_fieldcat = gt_fieldcat it_events = gt_events TABLES t_outtab =
EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_list_top_of_page.
BAL_DSP_LOG_PRINT CALL FUNCTION 'BAL_DSP_LOG_PRINT' EXPORTING i_s_list_append = gc_flag_x i_s_display_profile = ls_display_profile EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
BAL_DSP_LOG_PRINT CALL FUNCTION 'BAL_DSP_LOG_PRINT' EXPORTING i_s_list_append = gc_flag_x i_s_display_profile = ls_display_profile EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_display_profile EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name RPCADJK0 or its description.