NAV 2013 R2 RunPageLink bug

If you have standard Page Action that uses RunPageLink on field that is an Option field, and the OptionCaption of that field has entry that uses & sign (“and” sign) the RunPageLink will not filter the underlying table correctly in Filter Group0. Bron : Kopija's Blog…

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',…