Report PDF font embedding

Another feature built into Microsoft Dynamics NAV 2013 R2 CU 16 and Microsoft Dynamics NAV 2015 CU 4 name "Report PDF Font Embedding". For this feature, see "Administration Console" as a new switch. Bron : German NAV developers blog Lees meer...

Create PDF of a classic report (without RDLC) from RTC

1. Make Bullzip PDF Printer the default printer for the Classic report (in this example 50080) without RDLC (printer selections) 2. Add this code in Report - OnInitReport() BullZipPDF.Init; BullZipPDF.LoadSettings; BullZipPDF.SetValue('Output','c:\temp\temp.pdf'); //only example, better to use timestamp BullZipPDF.SetValue('Showsettings', 'never'); BullZipPDF.SetValue('ShowPDF', 'no'); BullZipPDF.SetValue('ShowProgress', 'no'); BullZipPDF.SetValue('ShowProgressFinished', 'no'); BullZipPDF.SetValue('SuppressErrors',…