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

ALV Object : toolbar

Former Member
0 Likes
442

Hello,

I would like to remove the entire toolbar of my ALV object.

I did it with the excluding method (to remove all the standards buttons) but the space allowed to the toolbar is still here.

Thanks in advance for your help,

Bertrand

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
420

Hi,

first you declare for the layout which you will use in grid display,

as DATA: DS_LAYOUT TYPE LVC_S_LAYO.

then use

DS_LAYOUT-no_toolbar = 'X'.

then toolbar will not display.

Regards,

Sreevani.

2 REPLIES 2
Read only

amit_khare
Active Contributor
0 Likes
420

Create a new PF-STATUS and use it instead of standard one.

Regards,

Amit

Reward all helpful replies.

Read only

Former Member
0 Likes
421

Hi,

first you declare for the layout which you will use in grid display,

as DATA: DS_LAYOUT TYPE LVC_S_LAYO.

then use

DS_LAYOUT-no_toolbar = 'X'.

then toolbar will not display.

Regards,

Sreevani.