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

insert into ztable through table control

Former Member
0 Likes
631

hai

i have taken the table control in the screen painter .

n i have enter the data in table control

now i like to append the dat into table

plz helpme need the code

3 REPLIES 3
Read only

amit_khare
Active Contributor
0 Likes
586

Refer the link -

Regards,

Amit

Reward all helpful replies.

Read only

Former Member
0 Likes
586

Hi,

u can modify the database table from the internal table.whatever changes u make in table control it will be reflected in the internal table.so from the internal table just modify the database table.

Prajith

Read only

former_member491305
Active Contributor
0 Likes
586

Hi Shravan,

Put one button either in application tool bar or screen with the function code and then in user_command module in PAI,write likw below.

Case ok_code.

when 'SAVE'

INSERT ztable FROM table itab.

Endcase.