Disable 'Print' Button on the report

Hi when we run a report we have 4 buttons showing up ‘Print’, ‘Preview’,‘Cancel’,‘help’…when the report property ‘Processing only’ is set to ‘NO’. but, I want the ‘Print’ option to be disabled when i run the report. how do i go about this. Thanx Kumar

Hi, I would write: IF NOT CurrReport.PREVIEW THEN ERROR(‘You cannot print this report.’); Valentin Gvozdev BMI Inc.

See report 206 (Sale - Invoice). There is some ruse. This report cannot be printed from Preview mode. Business Applications Programmer Sertified Navision Developer SIA “Sintegra” Latvia

Hi Val and Alex I want the ‘Print’ button to be disabled when i run the report. Is that possible? Thanx Kumar

Hello,

I am also getting the same issue to disable the print button of Report, If you got the solution then please let me know also.

Regards,

Dhananjay

As of now we cant disable print button.

but we can restrict used from printing by writing

IF NOT CurrReport.PREVIEW THEN
ERROR(‘You cannot print this report.’);

Hi,

please make the return value in fetch metho to zero ,then automatically the print button will disable

Regards

dhananjay

will it work on NAVISION?