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

Entry Form

Former Member
0 Likes
376

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

3 REPLIES 3
Read only

Former Member
0 Likes
353

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

Read only

Former Member
0 Likes
353

Hi,

LOOP the table control and take each record and save it.

Regards

vijay

Read only

Former Member
0 Likes
353

hi Mark

Its simple. Loop at the internal table and save every record inside the loop.

Hope this will solve your problem.

Regards,

Richa