SPTA_PARA_DEMO_1 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 SPTA_PARA_DEMO_1 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: RFCGROUP = Server group
Selection Text: MAXTASKS = No. of concurrent tasks
Selection Text: LO_NUMBR = Smallest number
Selection Text: HI_NUMBR = Largest number
Selection Text: ERR_NRS = Nos with simulated errors
Selection Text: DEBUG = Debugging level
Title: Simple parallelization (without individual task dependence)
Text Symbol: RES = Result of
Text Symbol: ERR =
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SPTA_PARA_PROCESS_START_2 CALL FUNCTION 'SPTA_PARA_PROCESS_START_2' EXPORTING server_group = rfcgroup max_no_of_tasks = maxtasks before_rfc_callback_form = 'BEFORE_RFC' in_rfc_callback_form = 'IN_RFC' after_rfc_callback_form = 'AFTER_RFC' callback_prog = gd_repid EXCEPTIONS invalid_server_group = 1 no_resources_available = 2 OTHERS = 3.
SPTA_INDX_PACKAGE_ENCODE CALL FUNCTION 'SPTA_INDX_PACKAGE_ENCODE' EXPORTING data = ld_task_data IMPORTING indxtab = pt_rfcdata.
SPTA_INDX_PACKAGE_DECODE CALL FUNCTION 'SPTA_INDX_PACKAGE_DECODE' EXPORTING indxtab = p_rfcdata IMPORTING data = ld_taskdata.
SPTA_SAMPLES_PRIMEFACTORS_GET CALL FUNCTION 'SPTA_SAMPLES_PRIMEFACTORS_GET' TABLES data = ld_taskdata-importing-workarea.
SPTA_INDX_PACKAGE_ENCODE CALL FUNCTION 'SPTA_INDX_PACKAGE_ENCODE' EXPORTING data = ld_taskdata IMPORTING indxtab = p_rfcdata.
SPTA_INDX_PACKAGE_DECODE CALL FUNCTION 'SPTA_INDX_PACKAGE_DECODE' EXPORTING indxtab = p_rfcdata IMPORTING data = ld_taskdata.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SPTA_PARA_DEMO_1 - Simple parallelization (without individual task dependence) SPTA_PARA_DEMO_1 - Simple parallelization (without individual task dependence) SPTA_LFC - Program SPTA_LFC: Local function calls in their own internal session SPTA_LFC - Program SPTA_LFC: Local function calls in their own internal session SPTA_INCL - SPTAINCL SPT799L2M - Subroutine Pool for Cluster View V_T799L2M