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

Excluding ALV grid toolbar

Former Member
0 Likes
904

Hi,

I want to know how to exclude the entire toolbar in alv report.Previously i was appending all the function code whcih I do not need to lt_exclude tab and passing it to method while displaying table.

But the problem is even though all the cdoes has been removed, some have been disabled but still on screen.

Is there any method by which I can remove the whole menubar...I dont need any fcode.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
775

Hi,

In the layout structure, pass NO_TOOLBAR = 'X'.

4 REPLIES 4
Read only

Former Member
0 Likes
776

Hi,

In the layout structure, pass NO_TOOLBAR = 'X'.

Read only

Former Member
0 Likes
775

Try to comment

PF-STATUS ' '   excluding.............

and

I_CALLBACK_PF_STATUS

in function module.

Read only

Former Member
0 Likes
775

Hi ,

U can use like

SET PF-STATUS ' ' .

Read only

Former Member
0 Likes
775

Example:-


form SET_PF_STATUS USING rt_extab TYPE slis_t_extab.
    set PF-STATUS 'WRITE YOUR STATUS NAME' excluding rt_extab.
endform.