RTPM_TRAC_QUEUE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RTPM_TRAC_QUEUE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TPM11 - Post Reversal/Recalculation
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: P_REVD = Posting Date
Selection Text: P_REAS = CFM Reversal Reason
Selection Text: P_POS = Listed Options/Futures
Selection Text: P_DEA = OTC Transactions
Selection Text: SO_SECAC = Securities Account
Selection Text: SO_RANLP = ID Number
Selection Text: SO_RANL = ID Number
Selection Text: SO_PT = Product Type
Selection Text: SO_POSAC = Futures Account
Selection Text: SO_PORTF = Portfolio
Selection Text: SO_OTCNR = Transaction
Selection Text: SO_BUKRS = Company Code
Selection Text: SO_ACGRP = Securities Account Group
Selection Text: P_TEST = Test Run
Selection Text: P_SEC = Securities
Selection Text: P_REVP = Posting Period
Title: Post Reversal/Recalculation
Text Symbol: CMN = General Selections
Text Symbol: DEA = OTC Trans.
Text Symbol: GDD = MM, Forex, OTC Derivatives
Text Symbol: POS = Listed Options / Futures
Text Symbol: PRD = Product Groups
Text Symbol: PST = Posting Control
Text Symbol: SEC = Securities
INCLUDE RTPM_TRAC_QUEUE_SELECTION.
No SAP DATABASE tables are accessed within this REPORT code!
TPM_TRG_OBSOLETE_TRANSACTIONS CALL FUNCTION 'TPM_TRG_OBSOLETE_TRANSACTIONS' EXPORTING im_old_transaction = 'TPM11'.
TPM_TRAC_QUEUE_SELECT CALL FUNCTION 'TPM_TRAC_QUEUE_SELECT' EXPORTING im_flg_sec = p_sec im_flg_pos = p_pos im_flg_dea = p_dea im_rng_company_code = so_bukrs[] im_rng_product_type = so_pt[] im_rng_portfolio = so_portf[] im_rng_security_id = so_ranl[] im_rng_security_account = so_secac[] im_rng_account_group = so_acgrp[] im_rng_security_id_p = so_ranlp[] im_rng_position_account = so_posac[] im_rng_deal_number = so_otcnr[] IMPORTING ex_tab_queue = g_tab_queue.
TPM_TRAC_QUEUE_CREATE_TRD_TR CALL FUNCTION 'TPM_TRAC_QUEUE_CREATE_TRD_TR' EXPORTING im_tab_queue = g_tab_queue im_protocol_handler = g_protocol_handler im_flg_testrun = p_test IMPORTING ex_tab_trd_transaction = g_tab_trd_transaction EXCEPTIONS failed = 1.
TPM_TRAC_QUEUE_SET_DATA CALL FUNCTION 'TPM_TRAC_QUEUE_SET_DATA' EXPORTING im_reversal_reason = p_reas im_reversal_date = p_revd im_reversal_period = p_revp.
TPM_TRAC_QUEUE_DISTRIBUTE CALL FUNCTION 'TPM_TRAC_QUEUE_DISTRIBUTE' EXPORTING im_tab_trd_transaction = g_tab_trd_transaction im_protocol_handler = g_protocol_handler im_flg_testrun = p_test EXCEPTIONS failed = 1.
TPM_TRAC_QUEUE_SAVE CALL FUNCTION 'TPM_TRAC_QUEUE_SAVE' IN UPDATE TASK EXPORTING im_tab_queue_delete = g_tab_queue.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RTPM_TRAC_QUEUE - Post Reversal/Recalculation RTPM_TRAC_QUEUE - Post Reversal/Recalculation RTPM_TRAC_POST_MANUAL - Utility Program: Manual Posting of Individual Business Transactions RTPM_TRAC_POST_MANUAL - Utility Program: Manual Posting of Individual Business Transactions RTPM_TRAC_POSTING_JOURNAL - Posting Journal RTPM_TRAC_POSTING_JOURNAL - Posting Journal