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

saving a module pool screen

Former Member
0 Likes
291

after all my operations , if i click save button the screen has to save in my datebase table / document how could it possible will u plz give an hint when ever it necessary i want to retrieve my save document how?

1 REPLY 1
Read only

Former Member
0 Likes
271

Hello,

First create a database table.

And in PAI of the screen write a module.

PAI.
MODULE SAVE.

MODULE SAVE.
if sy-sucomm = 'SAVE'.
modify ztable from itab. " Where the itab should have the same sturucture of the "Ztable
ENDIF.
ENDMODULE SAVE.

If useful reward.

Vasanth