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

Module pool programming

Former Member
0 Likes
389

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........

2 REPLIES 2
Read only

Former Member
0 Likes
372

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

Read only

Former Member
0 Likes
372

Hi,

Check this sample program

DEMO_DYNPRO_TABLE_CONTROL_1

DEMO_DYNPRO_TABLE_CONTROL_2

Reward point if useful