‎2007 Jun 08 8:45 AM
Hi friends,
I am using call selection-screen. In the bottom of the selection-screen there is icons like execte, check, save & exit. now i want to remove that check & execte icons. how to remove?.
Thanks & Regards,
Vallamuthu.M
‎2007 Jun 08 9:58 AM
Hi ,
If the icons are set using a SET PF status , then using the loop at screen wont help.
to exculde those icons from your sel screen , you have to use in the PBO of the screen under question:
SET PF-STATUS gc_main EXCLUDING lt_fcode_excluding_list.
here lt_fcode_excluding_list is a table type of sy-ucomm. you have to populate this table with the fcodes of the buttons to be removed.
Hope it helps.
Regards,
Sharat.
‎2007 Jun 08 8:49 AM
Hello,
U can use the AT SELECTION SCREEN OUTPUT event for this.
Try like this.
AT SELECTION-SCREEN OUTPUT .
LOOP AT SCREEN.
IF SCREEN-NAME = 'XXXX'.
SCREEN-ACTIVE = 0.
SCREEN-INVISIBLE = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
REgards,
VAsanth
‎2007 Jun 08 8:54 AM
hi ,
You can use loop at statement and disable these screen elements during runtime !
Regards,
Ranjita
‎2007 Jun 08 9:58 AM
Hi ,
If the icons are set using a SET PF status , then using the loop at screen wont help.
to exculde those icons from your sel screen , you have to use in the PBO of the screen under question:
SET PF-STATUS gc_main EXCLUDING lt_fcode_excluding_list.
here lt_fcode_excluding_list is a table type of sy-ucomm. you have to populate this table with the fcodes of the buttons to be removed.
Hope it helps.
Regards,
Sharat.
‎2007 Jun 08 4:04 PM
HI sharat,
Thanks for your information is veryuseful to me.
now i want how to gradeout the icons.?
Thanks & Regards,
vallamuthu.M
‎2007 Jun 08 4:05 PM
‎2007 Jun 11 6:23 AM