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: 

ALV Toolbar in two lines

Former Member
0 Kudos

Hi experts,

I have implemented ALV where i have 15 pushbuttons including ALV functions. Now i need my customised buttons in 1st row and alv functions in 2nd row. Is it possible ? If possible please guide me.

Thanks and regards,

Shivanand.

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

is it Normal ALV or OOALV.

It depends on the width of your ALV output incase of ALV OO.

You can change the postions of the ALV buttons , But not sure of the First row and second row. This totally depends on the Gui and width of your output.

3 REPLIES 3

former_member188685
Active Contributor
0 Kudos

is it Normal ALV or OOALV.

It depends on the width of your ALV output incase of ALV OO.

You can change the postions of the ALV buttons , But not sure of the First row and second row. This totally depends on the Gui and width of your output.

0 Kudos

ITs normal ALV . How to set position please let me know

0 Kudos

using the status you can do that , but you have to copy the new status and change the positions of the buttons in SE41 transaction.

First copy the status to your program SAPLKKBL , and status 'STANDARD' using copy status button.

Then change the postions in the change mode and activate the button.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
exporting
i_calback_status_set = 'STATUS'
..
..
....

FORM STATUS using extab type slis_t_extab.

SET PF-STATUS 'STANDARD' excluding extab.

ENDFORM.