‎2008 Oct 22 3:51 AM
I have created a table with fields.
Now i have to insert fields data from custom screen.
one field with number should appear and the
remaining fields should appear number times and each time when I click add the data entered in fields in the screen should be inserted into database table.
Edited by: Reddy on Oct 22, 2008 6:54 AM
‎2008 Oct 22 7:56 AM
Hi,
you have created ztable, now you have to create a screen using se51 as you required.
when you press add button
take all data in one internal table in at user command.
structure of internal table shd be same as of your ztable.
case sy-ucomm.
when 'ADD'.
modify ztable from table internal table.
endcase.
This will insert data yoy inserted in you screen will insert in ztable.