2006 Aug 03 10:24 AM
Hi all,
How can we do pageup & pagedown operations in table control which is located in a scbscreen.
Regards,
bala.
2006 Aug 03 10:30 AM
use P,P+,p- and p-- codes as OKcodes in BDC to page up and page down
2006 Aug 03 10:38 AM
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
2006 Aug 03 10:40 AM
Hi,
Design Table control using the new component in screen painter-Table Control with Wizard, your problem will be automatically solved.
Regards:-
Santosh.
2006 Aug 03 1:26 PM
Hi please,
check this demo program.
'demo_dynpro_tabcont_loop'
thanks,
jaffer vali shaik
2006 Aug 03 1:49 PM
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.