Application Development 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: 

How to hide back button in the standard tool bar? please help

gopalkrishna_baliga
Participant
0 Kudos

Hi Experts,

How to hide back button in the standard tool bar?

When the selection screen is displayed I want to hide the back button.

Thanks

Gopal

3 REPLIES 3

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You will need to set your own status.

In the AT SELECTION-SCREEN OUTPUT event, set the status.

AT SELECTION-SCREEN OUTPUT .
set pf-status 'MAIN'.

Double click on the MAIN in the statement, and create the status. Do not put the value for Green Arrow Back, but make sure to allow for some way of leaving this program. Save and activate.

Regards,

Rich Heilman

LucianoBentiveg
Active Contributor
0 Kudos

Just create your own status gui without that button and set your status gui in INITIALIZATION.

Regards.

Former Member
0 Kudos

hi,

Use this code..

REPORT Z_TEST999 .

DATA itab TYPE TABLE OF sy-ucomm.

PARAMETERS test(10) TYPE c.

AT SELECTION-SCREEN OUTPUT.

APPEND: 'E' TO itab.

CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'

EXPORTING

p_status = sy-pfkey

TABLES

p_exclude = itab.

Regards,

Sailaja.