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: 

Inactivate the print button is the ABAP list

former_member220801
Participant
0 Kudos

How can I inactivate the print button in the report program (ABAP list)?

I can inactive the print button on selection screen by using 'RS_SET_SELSCREEN_STATUS'. But can't achieve the same effect after the program jumped to the list output screen.

Thanks!

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos

you can create your own Pf-status in se41 & tie your program to it.. using the SET PF-STATUS statement..

~Suresh

5 REPLIES 5

suresh_datti
Active Contributor
0 Kudos

you can create your own Pf-status in se41 & tie your program to it.. using the SET PF-STATUS statement..

~Suresh

Former Member
0 Kudos

Hi Gundam,

make your on PF-STATUS and set it in your Report.

Regards, Dieter

Former Member
0 Kudos

hi,

To achieve this you need to create your own custom pf-status. The tcode for creating new pf-status is se41. Goto SE41, enter the program name and click create.

Enter the menu bar buttons, application tool bar button and Function key as per your requirement. Active the pf-status. Once the pf-status is created, use this in your program using the statement.

set pf-status 'ZPF'.

Regards,

Richa.

0 Kudos

Hi,

Is there any standard gui status that I can copy from? I need to have a gui status that differs with the standard one from ABAP list with only the print button disabled. Thanks!

0 Kudos

I have got it done now, thanks for your help!