Paralell Processing with ABAP [REV]
SPTA framework aRFC/ bgRFC SPTA framework SPTA framework is the most sophisticated and secured framework for parallel processing provided by SAP. If we want to handle multiple records and want to update/check multiple database tables in parallel, in that case, using conventional way to invoke parallel processing is difficult and there can be some ABAP memory issue. But in SPTA framework there are build in security for all the ABAP memory related issues so it is very secure. Also, SPTA framework is very easy to implement and all the parallel processing work is handled by SAP we do not need to bother how to handle it. In this way, it is also a very sophisticated framework. FM SPTA_PARA_PROCESS_START_2 The FM is used to set up parallel processing. The parameter user_param can be used for import/export parameters. We need to create a new separate subroutine pool program with the routines before, after and in_rfc call function 'SPTA_PARA_PROCESS_START_2' expo...