SAP Reports / Programs

RPIALRW0 SAP ABAP Report - Age Letter Reminder Batch Input Program







RPIALRW0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Before the tax year in which an employee turns 65, he or she must submit a 'proof of age' letter for tax rebate calculation purposes...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 RPIALRW0 into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

PC00_M16_RPIALRW0 - RPIALRW0


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RPIALRW0. "Basic submit
SUBMIT RPIALRW0 AND RETURN. "Return to original report after report execution complete
SUBMIT RPIALRW0 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_DELINC = Delete Incorrect Reminders
Selection Text: P_TEST = Test Run
Title: Age Letter Reminder Batch Input Program
Text Symbol: 001 = Reminder for & already exists
Text Symbol: 002 = An incorrect reminder for date & was deleted
Text Symbol: 003 = *** Test Mode ***
Text Symbol: 004 = Batch Input Session Name:
Text Symbol: 005 = Records Created
Text Symbol: 006 = Records Skipped
Text Symbol: 007 = Records Deleted
Text Symbol: 010 = No birthdate found
Text Symbol: 011 = Could not determine birthdate - unknown error
Text Symbol: 012 = Reminder created for &
Text Symbol: 013 = Reminder for &1 exists - should be &2
001 Employee Date of
002 Number Surname & Initials Birth Message


INCLUDES used within this REPORT RPIALRW0

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

HR_ZA_GBDAT_AGE CALL FUNCTION 'HR_ZA_GBDAT_AGE' EXPORTING I_PERNR = PERNR-PERNR I_DATUM = SY-DATUM I_USE_TECH = 'X' IMPORTING O_GBDAT_0002 = F_GBDAT_0002 O_GBDAT_0041 = H_GBDAT EXCEPTIONS NO_DATE_OF_BIRTH_FOUND = 1 OTHERS = 2.

BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' EXPORTING CLIENT = SY-MANDT GROUP = SNAME USER = SY-UNAME KEEP = 'X'.

BDC_CLOSE_GROUP CALL FUNCTION 'BDC_CLOSE_GROUP'.

BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING TCODE = TCOD TABLES DYNPROTAB = BDCDATA.

HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = cl_hr99b_pal=>c_root_node i_node_txt = l_title_text i_expand = 'X' i_categ_id = c_pal_categids-ialr IMPORTING e_node_key = obj_pal_log->g_node_key EXCEPTIONS program_error = 1 OTHERS = 2.

HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = l_stats i_msgid = 'BL' i_msgty = cl_hr99b_pal=>c_information i_msgno = 001 i_msgv1 = text-005 i_msgv2 = space i_msgv3 = space i_msgv4 = space.

HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = l_stats i_msgid = 'BL' i_msgty = cl_hr99b_pal=>c_information i_msgno = 001 i_msgv1 = text-006 i_msgv2 = space i_msgv3 = space i_msgv4 = space.

HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = l_stats i_msgid = 'BL' i_msgty = cl_hr99b_pal=>c_information i_msgno = 001 i_msgv1 = text-007 i_msgv2 = space i_msgv3 = space i_msgv4 = space.



Contribute (Add Comments)

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 RPIALRW0 or its description.