RSBTCPRIDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The print paramter for the steps of the batch job are stored in database table TPRI_PAR...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 RSBTCPRIDEL 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: DELCOUNT = Number of Packages Deleted
Selection Text: UPDCOUNT = Package Update Number
Title: Reorganization of Print Parameters for Background Jobs
Text Symbol: 001 = Deleted Item:
Text Symbol: 002 = Items Were Deleted from Table TPRI_PAR
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_ETPRI_PAR CALL FUNCTION 'ENQUEUE_ETPRI_PAR' EXPORTING mode_tpri_par = 'E' key1 = space key2 = space * X_KEY1 = ' ' * X_KEY2 = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_ETPRI_PAR CALL FUNCTION 'DEQUEUE_ETPRI_PAR' EXPORTING mode_tpri_par = 'E' key1 = space key2 = space * X_KEY1 = ' ' * X_KEY2 = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' .
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.