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

Insert data in ZTABLE using Module Pool Programing.

0 Likes
2,146

Hi - Please guide me how i can insert data in ZTABLE using Module Pool Programing - MPP step by step.

Thanks in adv.

Shahzad

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,392

Place a button on your screen like 'Save' . Then in the PAI Section of the screen, when clicked on that button, use MODIFY statement to save that data in your ZTABLE. (eg) MODIFY ztable FROM wa. The 'wa' will hold your screen values.

Hope this helps.

4 REPLIES 4
Read only

matt
Active Contributor
1,392

Module pool programming doesn't insert data into any table. It controls interaction between the screen and user.

Read only

Former Member
0 Likes
1,393

Place a button on your screen like 'Save' . Then in the PAI Section of the screen, when clicked on that button, use MODIFY statement to save that data in your ZTABLE. (eg) MODIFY ztable FROM wa. The 'wa' will hold your screen values.

Hope this helps.

Read only

matt
Active Contributor
1,392

So, no db locking, and no LUW? Not really a good design, is it?

Read only

RaymondGiuseppi
Active Contributor
1,392

Did you