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,
  
'WB_ONLINE_' to
 it_ucomm,
  
'GXSP'        to
 it_ucomm,
  
'ABBR'       to
 it_ucomm,
  
'TAB'         to
 it_ucomm,
  
'ENTF'       to
 it_ucomm,
  
'PRIN'        to it_ucomm,    "for print

  
'SPOS'       to it_ucomm,    "for SAVE
  
'GET'         to it_ucomm,    "for execute
  
'INIT'         to it_ucomm,    " Help
  
'E'              to   it_ucomm,    "for back
  
'ENDE'       to it_ucomm,    "for exit
  
'ECAN'      to it_ucomm,     "for cancel
  
'FC01'       to it_ucomm,
  
'FC02'       to
 it_ucomm,
  
'FC03'       to
 it_ucomm,
  
'FC04'       to
 it_ucomm,
  
'FC05'       to
 it_ucomm,
  
'DOCU'     to
 it_ucomm,
  
'DYNS'      to
 it_ucomm,
  
'ALLS'       to
 it_ucomm,
  
'DELA'      to
 it_ucomm,
  
'GOTO'     to
 it_ucomm,
  
'DELS'       to
 it_ucomm,
  
'SJOB'       to
 it_ucomm,
  
'OPTI'       to
 it_ucomm,
  
'VSHO'     to
 it_ucomm,
  
'VDEL'      to
 it_ucomm,
  
'SCRH'      to
 it_ucomm,
  
'NEW'      to
 it_ucomm,
  
'CHAP'     to
 it_ucomm,
  
'SHOP'     to
 it_ucomm,
  
'STRT'      to
 it_ucomm,
  
'PRNT'     to
 it_ucomm,
  
'STRV'      to
 it_ucomm,
  
'VVVV'     to
 it_ucomm,
  
'SEPR'      to
 it_ucomm,
  
'AKTI'       to
 it_ucomm,
  
'WB_MOD_RES' to
 it_ucomm,
  
'SYCK'      to
 it_ucomm,
  
'GENE'    to
 it_ucomm,
  
'TASK'     to
 it_ucomm,
  
'COPY'    to
 it_ucomm,
  
'RENM'  to
 it_ucomm,
  
'SYRA'    to
 it_ucomm,
  
'MODU' to
 it_ucomm,
  
'ED_MOD_OVE' to
 it_ucomm,
  
'XREF'    to
 it_ucomm,
  
'CATL'    to
 it_ucomm.

  
call function 'RS_SET_SELSCREEN_STATUS'

    
exporting
      p_status  = sy-pfkey
    
tables
      p_exclude = it_ucomm. 

Comments

Popular posts from this blog

SAP ABAP-Internal Table Operations and Example Program

HR ABAP Interview Questions and Answers

BDC (Batch Data Communication) - SAP ABAP