‎2006 Jun 23 10:08 AM
Hi friends,
How to save the multiples lines entered in the form using Table control, through a save button.
Can anyone pls guide me.
Regards,
Mark K
‎2006 Jun 23 10:17 AM
Hi
Are you using a field for mark?
In this case you should insert a flag to your internal table to indicate the marked records and then:
WHEN 'SAVE'.
LOOP AT ITAB WHERE MARK = 'X'.
.............
........
Max
‎2006 Jun 23 10:22 AM
Hi,
LOOP the table control and take each record and save it.
Regards
vijay
‎2006 Jun 23 11:07 AM
hi Mark
Its simple. Loop at the internal table and save every record inside the loop.
Hope this will solve your problem.
Regards,
Richa