Hi,
We are looking for a possibility to split work in different threads that happen in one procedure.
For example we have a master procedure which has a cursor inside that goes over different values that are used for single calculations.
Is it possible to create a "calc result for single input value" procedure that runs in parallel. In ABAP I would call a Function Module with destination NONE.
The result of the calculation should be returned via a output type and then inserted by the master procedure into a global temporary table.
The intention behind that is that it tooks a lot of time to calculate values for just one value. With this approach we hope to improve the initial response time for our ui.
Thank you for your tips.