‎2008 May 12 7:07 AM
Dear Experts,
In module pool, when i execute the transacrtion, the screen will display the list of values , but it can display upto 5 values.
like
1. mat1
2. mat2
like this....
If I page down it, it will display remaining materials.
But, here my requirement is, in initial display it will display materials with index 1 to 5.
When I page down, it should dispplay 6-10, means it has to increment the index automatically.
How to do that? Please suggest in solving that.....
Thanx in Advance........
‎2008 May 12 8:05 AM
Hi,
For this we have a standard Subroutine...
PERFORM USER_OK_TC USING P_TC_NAME TYPE DYNFNAM
P_TABLE_NAME
P_MARK_NAME
CHANGING P_OK LIKE SY-UCOMM.
Here one When condition is TC_P+ ..so u need to define an icon with Fucntion code TC_P+...so here they will call another Subroutine which does the remaining...
PERFORM COMPUTE_SCROLLING_IN_TC USING P_TC_NAME
P_OK.
Rewards if useful
Regards,
ABAPer 007
‎2008 May 12 10:44 AM
Hi,
Check this sample program
DEMO_DYNPRO_TABLE_CONTROL_1
DEMO_DYNPRO_TABLE_CONTROL_2
Reward point if useful