Hide the fields from ABAP Report ALV Output Tool Bar
Hiding the fields on ALV Output Tool Bar : Requirement : To Hide the ALV Tool bar in Display output. Internal table & Work area declarations : Data : it_exclude type slis_t_extab, wa_exclude type slis_extab. Write the Below Functionality before using Function Module : 'REUSE_ALV_GRID_DISPLAY' *& LIST OF BUTTONS EXCLUDING FROM ALV TOOLBAR wa_exclude-fcode = '&ETA'. append wa_exclude to it_exclude. clear wa_exclude. wa_exclude-fcode = '&OUP'. append wa_exclude to it_exclude. clear wa_exclude. “ Ascending wa_exclude-fcode = '&ODN'. append wa_exclude to it_exclude. clear wa_exclude. “Descending wa_exclude-fcode = '&UMC'. append wa_exclud...