2024 Aug 15 2:14 PM
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.
2024 Aug 15 6:43 PM
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.
2024 Aug 16 1:52 AM
Try this: Implementing Parallel Processing (sap.com).
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |