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: 

Regarding ALV grid

Former Member
0 Kudos

hai,

I want to remove the Information Icon(i) displaying

in ALV grid.

could you pls tell where to do setting in ALV grid.

I am using Field catalog with it.

Chandra kumar.

3 REPLIES 3

Former Member
0 Kudos

Fill the table <b>IT_TOOLBAR_EXCLUDING</b> for method <b>SET_TABLE_FOR_FIRST_DISPLAY</b> with UI_FUNCTIONS having value CL_GUI_ALV_GRID=>MC_FC_INFO.


data: ls_toolbar_excluding type ui_func.
data: lt_toolbar_excluding type UI_FUNCTIONS.

ls_toolbar_excluding = CL_GUI_ALV_GRID=>MC_FC_INFO.
append ls_toolbar_excluding to lt_toolbar_excluding.

Regards,

Subramanian V.

0 Kudos

HAI

i corrected code as per below.

CALL METHOD GRID_REPORT->SET_TABLE_FOR_FIRST_DISPLAY

CHANGING IT_FIELDCATALOG = FIELDCATALOG

IT_OUTTAB = SDYN_ITAB.

ls_toolbar_excluding = L_GUI_ALV_GRID=>MC_FC_INFO.append

ls_toolbar_excluding to lt_toolbar_excluding.

and executed. In alv grid Icon appears, when i click icon

it says no values found. when i click twice..window

gets automatically closed.

I am not sure whether this code has been working here or not.

pls confirm.

chandra kumar

0 Kudos

You should write the <b>ls_toolbar_excluding</b> code <i><b>before</b></i> calling the method <b>set_table_for_first_display</b> and also <i>pass it to the method set_table_for_first_display</i>.

Regards,

Subramanian V.