Implementing Parallel Processing - Background Processing - SAP Library
I have been gone through the above document about parallel processing.
My problem may be a typical one. For example, in my report, the structure of which is:
PERFORM get_data."get data from DB
LOOP AT internal_table.
PERFORM process_data."process every line of internal table
ENDLOOP.
PERFORM output_data."download the internal table as a txt file
How could I use parallel tech in my report?