Application Development 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: 

Parallel Processing (RSEINB00)

Former Member
0 Kudos

Hi,

I am trying to achieve parrallel processing for the below scenario:

I am trying to create a child job for processing each file.

Suppose if i have 5 files, in this case i will have one Main Job & 5 child Jobs. Apprecaite if anyone has come across such scenario.

Each file can have two types of data. One set of data for trasferring to application server & another set for posting idocs.

LOOP AT t_files_to_proc INTO wl_files_to_proc.

*-- This perform builds two sets of data [ Data Set-1 for transferring file onto App Server

*-- Data Set-2 for posting idocs using RSEINB00 ]

PERFORM build_table_data.

*-- Data Set-1 for transferring file onto App Server

PERFORM transfer_data_to_appserver.

*-- Data Set-2 for posting idocs using RSEINB00

PERFORM submit_rseinb00.

ENDLOOP.

1 REPLY 1

Clemenss
Active Contributor
0 Kudos

Hi rao,

here is a sample, adapt to your needs:

[Easily implement parallel processing in online and batch processing |https://wiki.sdn.sap.com/wiki/display/Snippets/Easilyimplementparallelprocessinginonlineandbatchprocessing]

Regards,

Clemens