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

logical database GUI status

Former Member
0 Likes
640

Hello everyone.

Is there a way to change the GUI status guy status of a logical database?

thank you in advance.

1 ACCEPTED SOLUTION
Read only

former_member184632
Participant
0 Likes
570

Hi Ebaristo,

REPORT demo_sel_screen_status .

DATA itab TYPE TABLE OF sy-ucomm.

PARAMETERS test(10) TYPE c.

AT SELECTION-SCREEN OUTPUT.

APPEND: 'PRIN' TO itab,

'SPOS' TO itab.

CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'

EXPORTING

p_status = sy-pfkey

TABLES

p_exclude = itab.

In this example program, the two functions Print and Save as Variant are disabled. You can find the function codes of the default GUI status in the field GUI Status which you can display by choosing System u2192 Status.

[http://help.sap.com/abapdocu_702/en/abenselection_screen_overview.htm]

2 REPLIES 2
Read only

former_member184632
Participant
0 Likes
571

Hi Ebaristo,

REPORT demo_sel_screen_status .

DATA itab TYPE TABLE OF sy-ucomm.

PARAMETERS test(10) TYPE c.

AT SELECTION-SCREEN OUTPUT.

APPEND: 'PRIN' TO itab,

'SPOS' TO itab.

CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'

EXPORTING

p_status = sy-pfkey

TABLES

p_exclude = itab.

In this example program, the two functions Print and Save as Variant are disabled. You can find the function codes of the default GUI status in the field GUI Status which you can display by choosing System u2192 Status.

[http://help.sap.com/abapdocu_702/en/abenselection_screen_overview.htm]

Read only

Former Member
0 Likes
570

Thanks a lot,

that really solved my problem.