Application Development and Automation 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: 
Read only

Parallel Cursor Technique

Former Member
0 Likes
949

Hello,

Can some one give me a description in detail as to what exactly Parallel cursor method is and how it works.

Also, what are the Performance Tuning Techniques that we can follow during ABAP Development?

Thanks and Regards,

Venkat

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
622

Hi Venkat,

Check this thread with the same topic:

Regards,

Chandra Sekhar

3 REPLIES 3
Read only

Former Member
0 Likes
623

Hi Venkat,

Check this thread with the same topic:

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
622

Thread Answered.

Thanks and Regards,

Venkat Phani Prasad Konduri

Read only

Former Member
0 Likes
622

actually, I would not recommend the parallel cursor technique! First name is actually incorrect internal tables have no cursor only indexes, only parallel

index would make sense.

Performance improvement:

If costs for sort are taken into account, then parallel index is not faster than loop with loop on sorted table.

or with standard table


loop
    read ...  binary search
    index = sy-tabix    
    loop ... from index
       if  ( condition is not fulfilled )
          exit
       endif.
    endloop
endloop

The full parallel index technique should find all deviations between 2 tables, additional lines in Tab1, additional lines in tab2, changes.

Feel free to find a complete solution. We can compare results, it is not worth the effort!

Siegfried