‎2007 Jul 10 9:58 AM
Hi all,
I am making one module pool program.
I have created one screen in which i have taken one table.
The value which i input in that table should b save in database table which is Ztable.
so is that possible?
and i am entering more than one rows at a time and when i click on save button, all rows should save in database table ( my Ztable).
can someone help me?
Thanks in advance.......
‎2007 Jul 10 10:02 AM
Hi,
Are you using table control? If so, Check this link.I am explaining the data base manipulations using table control.It can help you.
‎2007 Jul 10 10:01 AM
Hi
U need to manage it in the USER_COMMAND module in the PAI of your screen.
After activing the ICON SAVE of your status GUI:
PROCESS PAI.
LOOP AT
ENDLOOP.
MODULE USER_COMAND.
MODULE USER_COMAND.
CASE OK_CODE.
WHEN 'SAVE'. MODIFY Z-TABLE FROM TABLE ITAB.
ENDCASE.
ENDMODULE.Max
‎2007 Jul 10 10:02 AM
Hi,
Are you using table control? If so, Check this link.I am explaining the data base manipulations using table control.It can help you.