RPUTCUG0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The Tax Code Uplift Report (RPUTCUG0) allows you to update tax codes for your employees in a single step, rather than manually entering information on employees' infotype
If you would like to execute this report or see the full code listing simply enter RPUTCUG0 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M08_UTCU - Start-of-year tax code update 08
PC00_M08_RPUTCUG0 - Start-of-year tax code update 08
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: SOY = Start of Year
Selection Text: P9_DSN = Directory on UNIX server
Selection Text: N_BEGDA = Validity begin f.copied recrds
Selection Text: NOT_SOY = Other
Selection Text: MAPNAME = Batch session name
Selection Text: LFILE = Local directory on PC
Selection Text: GEN_UPLI = Apply General Uplift
Selection Text: BDCI_NCH = Process unchanged tax codes
Title: HR-GB: Batch Input: Tax Code Uplift
Text Symbol: PB4 = employee(s) have received a new tax code 0T due to general uplift.
Text Symbol: PB5 = employee(s) have received a new tax code 0T due to general uplift. Tax Basis W1/M1 changed to cumulative.
Text Symbol: PB6 = employee(s) have received a new tax code 0T due to general uplift. Tax Basis W1/M1 remains unchanged.
Text Symbol: PC1 = employee(s) tax code remains unchanged and is copied to a new record.
Text Symbol: PC2 = employee(s) tax code remains unchanged and is copied to a new record with a tax basis W1/M1 changed to cumulative.
Text Symbol: PC3 = employee(s) tax code source is blank from &1 on tax infotype record. Record not copied.
Text Symbol: PN1 = employee(s) tax code remains unchanged. No new record is created.
Text Symbol: PNT = employee(s) have tax code NT and tax code source P38. No uplift required.
Text Symbol: PR0 = employee(s) are inactive on &1. No new record is created.
Text Symbol: PR1 = employee(s) do not have a current tax infotype record.
Text Symbol: PR2 = employee(s) already had a tax infotype record starting after &1.
Text Symbol: PR3 = employee(s) already had a tax infotype record from P6/P9 starting on &1. No general uplift.
Text Symbol: PR4 = employee(s) already had a tax infotype record from P6/P9 starting on &1. Record not copied.
Text Symbol: PR5 = employee(s) already had a tax infotype record from general uplift starting on &1. Record not copied.
Text Symbol: PR6 = employee(s) already had a tax infotype record due to this general uplift.
Text Symbol: PR7 = employee(s) tax code is not copied to a new record. The tax code is not valid on &1.
Text Symbol: PR8 = employee(s) have not received a new tax code according to general uplift. The new tax code is not valid on &1.
Text Symbol: PR9 = employee(s) starter report not yet processed.
Text Symbol: PRO = Processing mode
Text Symbol: PZ1 = records on P6/P9 have no matching NI / works number among the employees selected
Text Symbol: QR3 = employee(s) already had a tax infotype record from P6/P9 starting between &1 and &2. No general uplift.
Text Symbol: QR4 = employee(s) already had a tax infotype record from P6/P9 starting between &1 and &2. Record not copied.
Text Symbol: QR5 = employee(s) already had a tax infotype record from general uplift starting between &1 and &2.
Text Symbol: SOY = Start of Year
Text Symbol: PB3 = employee(s) have received a new tax code according to general uplift. Tax Basis W1/M1 remains unchanged
Text Symbol: 001 = Dataset
Text Symbol: 002 = Employee
Text Symbol: 003 = cannot be found
Text Symbol: 004 = NI Number
INCLUDE RPDEFIG1.
INCLUDE RPINITG1.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = g_repid i_tabname_header = g_tabname_header i_tabname_item = g_tabname_item i_structure_name_header = 'GBTCU_STRUCT1' i_structure_name_item = 'GBTCU_STRUCT' is_keyinfo = gs_keyinfo is_layout = gs_layout it_fieldcat = gt_fieldcat[] it_events = gt_events[] * I_SCREEN_START_COLUMN = 0 "Use coordinates for * I_SCREEN_START_LINE = 0 "display as dialog box * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 IMPORTING e_exit_caused_by_caller = g_exit_caused_by_caller es_exit_caused_by_user = gs_exit_caused_by_user TABLES t_outtab_header = gt_outtab_header t_outtab_item = gt_outtab_item EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.