Kumudwini Bheemisetty wrote:
Can anyone tell me how can achieve parallel cursor method using FOR operator?
- If you want to try the FOR operator => you are already in ABAP Release 740
- Since you are working with ABAP 740 => LOOP...WHERE has already been optimized for SORTED and HASHED tables (read: also secondary keys)
- Since LOOP...WHERE is already optimized => You do not need parallel cursor
Anyway on a more serious note, do not use parallel cursor method for optimizing nested loops. Instead switch to SORTED, HASHED tables
BR,
Suhas
PS - If you are more savvy, you can use secondary keys with STANDARD tables too. Fyi, I prefer to work with SORTED/HASHED tables wherever possible.