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

Hiding documentation button on a report

Former Member
0 Likes
969

Hi guys,

I developed a custom documentation for my reports, so I use a FM to show it on a button that I created, but the standard information button still appearing on my report screen.

I need to hide this button.

I tried to use de FM 'RS_SET_SELSCREEN_STATUS'. It work fine for every button except for information button.

MY CODE:

gtt_exclude-fcode = 'INIT'.
APPEND gtt_exclude TO gt_exclude.

AT SELECTION-SCREEN OUTPUT.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = gt_exclude.

Thanks a Lot!

Hi guys,

I developed a custom documentation for my reports, so I use a FM to show it on a button that I created, but the standard information button still appearing on my report screen.

I need to hide this button.

I tried to use de FM 'RS_SET_SELSCREEN_STATUS'. It work fine for every button except for information button.

MY CODE:

gtt_exclude-fcode = 'INIT'.
APPEND gtt_exclude TO gt_exclude.

AT SELECTION-SCREEN OUTPUT.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = gt_exclude.

Thanks a Lot!

2 REPLIES 2
Read only

retired_member
Product and Topic Expert
Product and Topic Expert
0 Likes
871

Define the selection screen as a subscreen of a normal screen?

Read only

umayaraj
Participant
0 Likes
871

Hi,

Create GUI Status bar with customized button for your screen.

Thanks

Umayaraj.