Hello,
We are running two companies/application databases. One company would like 2 invoices to print from the shippers screen. Another company would just like 1 invoice to print.
I am familiar with using SQL to update the system database to update the copies allowed.
https://community.dynamics.com/product/sl/f/35/t/23472.aspx
- USE <systemdatabase>
- UPDATE RptControl
- SET CopiesAllowed = 2
- WHERE ReportNbr = '40680'
However this updates for both companies. Is there a way to have different copies for each company?