‎2008 Oct 03 10:20 AM
Hi All
.. How to provide add modify delete facility from database using Table control (normal programing).....
How to do this using table control wizerd ..
Thanks.
..Ashish
‎2008 Oct 03 10:26 AM
Just drag the wizard into the screen it will ask step by step.Did you try draging it
Regards,
Midhun Abraham
Edited by: Midhun Abraham on Oct 3, 2008 11:27 AM
‎2008 Oct 03 5:29 PM
Hi Ash,
Try this procedure for adding records in the table first try to declare a module in PAI and with in that you try to write the saving code as usally and make sure at the end of the inserting line you increment your table record value.
Any queries you are welcome.
Hope this helps you.
Cheers!!
‎2008 Oct 04 11:01 AM
let itab be the internal table being dispalyed in Table control(TC)
delete:
in PBO
to delete line fom TC, delete line from ITAB and use DESCRIBE TABLE ITAB LINES TC-LINES.
Add:
in PBO
Add a record to ITAB and use DESCRIBE TABLE ITAB LINES TC-LINES.
Modify:
in PAI
Use this in Module which comes inside LOOP and ENDLOOP in PAI for Table Control
Modify ITAB from TC-CURRENT_LINE
‎2009 Jun 01 12:00 PM