MSPAMF03 is a standard ABAP INCLUDE 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 MSPAMF03 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.
Title: Include MSPAMF03
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SPAM_READ_PATCH_TABLES CALL FUNCTION 'SPAM_READ_PATCH_TABLES' EXPORTING read_pat01 = on TABLES pat01_list = lt_pat01.
ENQUEUE_E_OCS_QUEUE CALL FUNCTION 'ENQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _wait = ' ' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 99.
SPAM_CONFIRM_PATCH CALL FUNCTION 'SPAM_CONFIRM_PATCH' TABLES tt_pat01 = lt_pat01 EXCEPTIONS inexistent_patch = 1 OTHERS = 2.
DEQUEUE_E_OCS_QUEUE CALL FUNCTION 'DEQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _synchron = 'X' _collect = ' '.
OCS_ALM_REPORT_QUEUE_STATUS CALL FUNCTION 'OCS_ALM_REPORT_QUEUE_STATUS' EXPORTING called_by_ocs = on EXCEPTIONS OTHERS = 0.
OCS_ALM_RESET_ALL_ALERTS CALL FUNCTION 'OCS_ALM_RESET_ALL_ALERTS' EXCEPTIONS OTHERS = 0.
SPAM_READ_PATCH_TABLES CALL FUNCTION 'SPAM_READ_PATCH_TABLES' EXPORTING read_pat01 = on TABLES pat01_list = lt_pat01.
ENQUEUE_E_OCS_QUEUE CALL FUNCTION 'ENQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _wait = ' ' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 99.
SPAM_IGNORE_GENERATION_ERRORS CALL FUNCTION 'SPAM_IGNORE_GENERATION_ERRORS' TABLES queue = lt_pat01 EXCEPTIONS OTHERS = 99.
DEQUEUE_E_OCS_QUEUE CALL FUNCTION 'DEQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _synchron = 'X' _collect = ' '.
ENQUEUE_E_OCS_QUEUE CALL FUNCTION 'ENQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _wait = ' ' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 99.
SPAM_IGNORE_TEST_IMPORT_ERRORS CALL FUNCTION 'SPAM_IGNORE_TEST_IMPORT_ERRORS' EXCEPTIONS wrong_step = 1 error_in_update = 2 OTHERS = 99.
DEQUEUE_E_OCS_QUEUE CALL FUNCTION 'DEQUEUE_E_OCS_QUEUE' EXPORTING mode_pat01 = 'E' _scope = '1' _synchron = 'X' _collect = ' '.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.