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

Former Member
0 Kudos

Hi,

I have two Performs in my Report program which are independent but the resulting two differernt Internal tables will be displayed on two different subscreens as ALV on same Main Screen.

My problem is that both performs contain Join statements which are time consuming .I cannot schedule it for Background processing as Subscreens are involved.

Please tell me a method to parallely execute both the performs as I believe I can save time if both are executed simultaneously.

I tried SUBMIT but it cannot execute both performs at same time. I need your help.

Thanks and Regards,

Sentinel

3 REPLIES 3

former_member182114
Active Contributor
0 Kudos

Hi Sentinel,

In rare cases I saw parallel executions solve a timeout problem due to a database access.

You must check FIRST your SQL statment if it is really tunned.

Analyse it on ST05, maybe spit into fewer peaces...

Anyway, follow some information about parallel processing found by search:

http://wiki.sdn.sap.com/wiki/display/Snippets/Easilyimplementparallelprocessinginonlineandbatchprocessing

http://wiki.sdn.sap.com/wiki/display/Snippets/ABAPasynchronousRFCII-parallelprocesses

http://wiki.sdn.sap.com/wiki/display/ABAP/Parallel+Processing

Regards, Fernando Da Ró

Former Member
0 Kudos

Hi,

No need to go for a parallel processing here, could you post your time consuming join statements, probably I can provide some solutions.

Regards,

Antony Thomas

Former Member
0 Kudos

Moderator message - Please see before posting - JOINs are probably not your problem Rob