Application Development 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: 

Using Tabstrip update the database table

Former Member
0 Kudos

Hi Guy's,

Please help me using tabstrip user enterd data want to update the database table.

Thanks and Regards,

Sai.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Tabstrips allow users to access multiple subscreens on one normal screen.Tabstrips allow the user to navigate between different subscreens.If we want to update the database tables use pushbutton update and write respective login under PAI.

Reward if useful.

Regards,

Swetha.

Former Member
0 Kudos

In the PAI o the Module Pool, add the following code

LOOP AT <itab>.

MODULE <MODULE_NAME>.

ENDLOOP.

*********************

Inside the Module, you can write code to update the database table.

Please Award points.