Posts

Showing posts with the label Hiding Fields from ABAP REPORT Selection Screen Tool bar

Hiding Fields from ABAP Report Selection Screen Tool bar

Hiding the fields on selection Screen Toolbar : Requirement :   To hide Selection Screen Tool bar in R/3 and we can use the Report without any Selection screen toolbar in   ESS/MSS Portal. Way to to Do it : Internal Table Declaration : Data : it_ucomm         type   table   of  sy-ucomm. In Event AT SELECTION-SCREEN OUTPUT. Write the below Following Functionality : *           LIST OF BUTTONS EXCLUDING FROM Selection Screen append  :     'XXECK1'      to  it_ucomm,    'XXALIF'      to  it_ucomm,    'XXOPTI'      to  it_ucomm,    'XXSTAR'     to  it_ucomm,    'XXEXEN'     to  it_ucomm,    'XXSAPM'   to  it_ucomm,    'DOCU'        to  it_ucomm,  ...