HI ,
i am using one internal table as below .
loop at i_main.
i_temp-field0 = i_main-field0.
loop at i_main into wa_main where some conditions.
i_temp-field1 = wa_main-field1 * wa_field-field2.
endloop.
append i_temp.
endloop.
so here in that calculations becoz of more records in i_main i am getting time_out error .
so how we can avoid this can any one pls help me .
THX