Application Development 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: 

tbl control pbm

Former Member
0 Kudos

Hi all,

How can we do pageup & pagedown operations in table control which is located in a scbscreen.

Regards,

bala.

5 REPLIES 5

Former Member
0 Kudos

use P,P+,p- and p-- codes as OKcodes in BDC to page up and page down

Former Member
0 Kudos

Hi,

I'd like to create a screen like that in transaction VA03.

It contains a table control and it is located in Sales view -> sales tab -> tbl cntrl all items displayed in a subscreen. Its not located in main screen.

I use P+ ok code. But it doesn't get triggered in PAI.

I just want to ask how to trigger p+?

regards,

bala

Former Member
0 Kudos

Hi,

Design Table control using the new component in screen painter-Table Control with Wizard, your problem will be automatically solved.

Regards:-

Santosh.

Former Member
0 Kudos

Hi please,

check this demo program.

'demo_dynpro_tabcont_loop'

thanks,

jaffer vali shaik

anilnal
Explorer
0 Kudos

Hi Krithika,

For the scrolling operations, the <tablecontrol>-TOP_LINE is automatically calculated when a scroll is done in the table control.

The fields SY-LOOPC contains the number of tablecontrol lines in the PBO adn the number of filled lines in the PAI (when used within the LOOP..ENDLOOP)

So in the LOOP, you can modify the entries with INDEX of <tablecontrol>-CURRENT_LINE starting from <tablecontrol>-TOP_LINE with the number of entries to be moved equal to SY_LOOPC.

Regards,

Anil.