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

Disable Print Button in Classical Report

Former Member
0 Likes
510

HI Genius,

  Can anyone teel me how to disable print button in classical report.

Moderator message: please do more research before posting.

Message was edited by: Thomas Zloch

HI Genius,

  Can anyone teel me how to disable print button in classical report.

Moderator message: please do more research before posting.

Message was edited by: Thomas Zloch

2 REPLIES 2
Read only

Former Member
0 Likes
430

This message was moderated.

Read only

Former Member
0 Likes
430

Hi,

You need to create a status in SE41 transaction say 'ZSTATUS' by copying the STANDARD PF status and assign some function code to the print button say for example 'ZPRINT'.

Then in your program after START-OF-SELECTION, write the below line:

SET PF-STATUS 'ZSTATUS' EXCLUDING 'ZPRINT'.

This way your print button will get disabled.

Hope it serves useful to you.