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

Table Control

Former Member
0 Likes
481

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

4 REPLIES 4
Read only

Former Member
0 Likes
442

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

Read only

Former Member
0 Likes
442

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!!

Read only

Former Member
0 Likes
442

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

Read only

Former Member
0 Likes
442

Thanks