cancel
Showing results for 
Search instead for 
Did you mean: 

ME23N - Disable Printing from Print Preview Screen

Former Member
0 Kudos

I am really not sure where to put this, so I am trying here.

We have had people change a purchase order, go to print preview and print the purchase order and then not save it. They now have a copy of a purchase order that does not exist as printed.

Can you disable the ability to print from print preview?

Thanks.

Cindy

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Cindy,

Hope u had solved this issue,if not try this one,definitely it will work,goto t-code NACE,click purchase order,output types,NEU,Processing Routines,find the program(ZMMPRR0100) which belongs that smartform.

In that program u may have many includes,choose the final include (ZMMPRI0001) ,and add this peice of code on that include

DATA: output_options TYPE SSFCOMPOP. "DISABLING PRINT OPTION

IF SY-TCODE = 'ME23N'.

output_options-tdimmed = 'X'.

output_options-tddest = 'LP01'.

output_options-tdnewid = 'X'.

output_options-tddelete = 'X'.

output_options-tdnoprint = 'X'.

ENDIF.

Another method is through Standard Variant.

Regards,

Sarav.

Former Member
0 Kudos

From the Security side, block the access to the user to t-code ME9F, that will block their access to Print Preview.