‎2009 Apr 28 6:17 AM
Hi,
I have a tabstrip having 3 tabs in it on the main screen. The 3 tabs have 3 subscreens ,on each subscreen there are some fields which the user enters(Dialog Program). Once the user enters the data in all the subscreens there is a save button on the main screen.Please suggest how should i code so that the data from the subscreens is stored into the database table on pressing save button.I have written the code in the PAI module of the main screen but its not working.Please suggest.
‎2009 Apr 29 9:18 AM
Hello Shashi
Suppose you have screen 9101 wherein you have the tabstrip and 9102,9103 and 9104 are the subscreens of the different tabs.
In PAI of 9101 inside MODULE user_command_9101:
CASE ok_code.
...................................................
WHEN 'SAVE'.
...................................................
use the INSERT statement to insert the data from screen fields into the db table.
ENDCASE.
Hope this will help you
Avishek