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

Adding an extra line in the table control

Former Member
0 Likes
359

Hi All,

How can we add an extra record in the table control after the user hits ADD button?We tried doing it by incrementing the lines field in the table control,but it is executing the PBO part again after hitting the ADD button.Any SAP standard program will be helpful.

Thanks,

Rakesh.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
340

hi rakesh,

Any time u click a button in screen it will process the PBO.I dont think we can avoid that.the code for add line has to be written in PBO.

regards,

Prajith

2 REPLIES 2
Read only

Former Member
0 Likes
341

hi rakesh,

Any time u click a button in screen it will process the PBO.I dont think we can avoid that.the code for add line has to be written in PBO.

regards,

Prajith

Read only

Former Member
0 Likes
340

Rakesh,

When you click on ADD button PBO will trigger after PAI.If you want to restrict

to process the PBO functionality in this case(When click on radio button) put condition that when sy-ucomm not eq ADD(button function code).

Pls. mark if useful.....