Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Inserting data from MPP to custom table.

Former Member
0 Likes
517

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

1 REPLY 1
Read only

Former Member
0 Likes
404

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.