Hi Dinesh,
Instead of using parallel cursor in LOOP processing I'd rather recommend to use internal tables of type SORTED instead. These are capable to optimize access via WHERE-clause in the LOOP-statement (if WHERE clause contains first fields of SORTED key) and much less error-prone than parallel cursor. From a performance point of view, both techniques are nearly the same.
Best Regards, Randolf