Application Development and Automation 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: 
Read only

CALL SELECTION SCREEN

vallamuthu_madheswaran2
Active Contributor
0 Likes
901

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

1 ACCEPTED SOLUTION
Read only

sharat_chandra
Product and Topic Expert
Product and Topic Expert
0 Likes
878

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.

6 REPLIES 6
Read only

Former Member
0 Likes
878

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

Read only

former_member196299
Active Contributor
0 Likes
878

hi ,

You can use loop at statement and disable these screen elements during runtime !

Regards,

Ranjita

Read only

sharat_chandra
Product and Topic Expert
Product and Topic Expert
0 Likes
879

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.

Read only

0 Likes
878

HI sharat,

Thanks for your information is veryuseful to me.

now i want how to gradeout the icons.?

Thanks & Regards,

vallamuthu.M

Read only

vallamuthu_madheswaran2
Active Contributor
0 Likes
878

now i want how to gradeout the icons.?

Read only

vallamuthu_madheswaran2
Active Contributor
0 Likes
878

applying another way