RPUTXAD0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program RPUTXAD0 must be started when you change from Release 3...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 RPUTXAD0 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: PA_SIMU = Test Run
Title: Report RPUTXAD0
Text Symbol: 001 = Y
Text Symbol: 002 = No
Text Symbol: F01 = There are still entries in table P01T_ADMIN_STAT. Convert?
Text Symbol: F02 = Conversion Cancelled
Text Symbol: F03 = Test Log:
Text Symbol: F04 = Production Log:
Text Symbol: F05 = Data records copied into
Text Symbol: F06 = Table P01T_ADMIN_STAT
Text Symbol: F07 = Error Updating Table P01T_ADMIN_STAT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' EXPORTING text_question = text-f01 text_button_1 = text-001 text_button_2 = text-002 default_button = '2' display_cancel_button = ' ' IMPORTING answer = g_answer.
HR_PAL_GENRL_MSG_ADD call function 'HR_PAL_GENRL_MSG_ADD' EXPORTING i_msgid = sy-msgid i_msgty = sy-msgty i_msgno = sy-msgno i_msgv1 = sy-msgv1 i_msgv2 = sy-msgv2 i_msgv3 = sy-msgv3 i_msgv4 = sy-msgv4 EXCEPTIONS program_error = 1 others = 2.
HR_PAL_LOG_DISPLAY call function 'HR_PAL_LOG_DISPLAY' EXPORTING I_S_DISPLAY_PROFILE = l_s_display_profile * I_S_FLAT_PROFILE = EXCEPTIONS PROGRAM_ERROR = 1 NO_LOGS = 2 OTHERS = 3 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.