Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Parallel Processing of an report

Stef3
Explorer
0 Likes
1,095

Hello experts,
does anyone know if there is a way to call an Report parallel multiply times. I call my report with different parmeters, but because it is so slow it is not enough time to call  one after the other. I have to call it 11 times in the timeperiod of 2 hours. 

SUBMIT zsm_inkonsistente_szenarien3
  WITH p_start = 0
  WITH p_end   = 500
  AND RETURN.

SUBMIT zsm_inkonsistente_szenarien3
  WITH p_start = 501
  WITH p_end   = 1000
  AND RETURN.

 

 

Hello experts,
does anyone know if there is a way to call an Report parallel multiply times. I call my report with different parmeters, but because it is so slow it is not enough time to call  one after the other. I have to call it 11 times in the timeperiod of 2 hours. 

SUBMIT zsm_inkonsistente_szenarien3
  WITH p_start = 0
  WITH p_end   = 500
  AND RETURN.

SUBMIT zsm_inkonsistente_szenarien3
  WITH p_start = 501
  WITH p_end   = 1000
  AND RETURN.

 

 

2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
1,037

If it's slow, check what ABAP or SQL is slow (SAT, ST05, etc.) and fix it.

If you can't speed up, parallel processing can be done in many ways, one of them is to run the programs in background jobs (SUBMIT VIA JOB). Search the forum and ABAP documentation for more information.

Read only

Hongjun_Qian
Product and Topic Expert
Product and Topic Expert
1,004

Try this: Implementing Parallel Processing (sap.com).

Learn, exercise, then share.