Test 1
Test 1
60Marks
12.
13.
14.
do 4 times.
t_record-cola = sy-index.
t_record-colb = sy-index ** 3.
insert t_record into table gt_table.
enddo.
t_ record-cola = 3.
t_record-colb = 64.
read table gt_table into record index 3 comparing colb.
write:/ 'sy-subrc = ', sy-subrc.
skip.
write:/ 'record-cola:', t_record-cola, /'record-colb:', t_record-colb.
15.