Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am in the process of migrating a lot of NPrinting reports from 16.9.0.0 (SR9) to September 2020. I export my nsqs as zip files and use the import tool in NPrinting September 2020. It is going pretty well but I have this particular issue which is giving me a headache.
I have three PixelPerfect reports with custom summaries all following the same pattern of custom rules, like this one:
Private PlannedTurnoverGroup as Double
Private TurnoverGroup as Double
Private Sub PlannedFulfillmentGroup_SummaryGetResult(ByVal sender As Object, ByVal e As DevExpress.XtraReports.UI.SummaryGetResultEventArgs)
e.Result = TurnoverGroup/PlannedTurnoverGroup
e.Handled = True
End Sub
Private Sub PlannedFulfillmentGroup_SummaryReset(ByVal sender As Object, ByVal e As System.EventArgs)
PlannedTurnoverGroup = 0
TurnoverGroup = 0
End Sub
Private Sub PlannedFulfillmentGroup_SummaryRowChanged(ByVal sender As Object, ByVal e As System.EventArgs)
TurnoverGroup += Convert.ToDouble(SRep.GetCurrentColumnValue("Turnover M"))
PlannedTurnoverGroup += Convert.ToDouble(SRep.GetCurrentColumnValue("Planned Turnover Month N"))
End Sub
These custom summaries work fine in version 16 but in September 2020, my cells are empty and I've been trying to understand why for the last couple of hours with no success. I was not able to spot any difference between the two reports. I also couldn't find any topic related to this particular issue, unfortunately.
Was anybody confronted to the same issue?
Hi,
Starting from February 2020 you must enable the execution of PixelPerfect scripts that is disabled by default.
Go to Admin -> Settings -> Report -> PixelPerfect security and enable the flag "Enable script execution". Refer to https://help.qlik.com/en-US/nprinting/November2020/Content/NPrinting/AdministeringQVNprinting/Admin-... and February 202 Release Notes.
Best Regards,
Ruggero
Hi,
Starting from February 2020 you must enable the execution of PixelPerfect scripts that is disabled by default.
Go to Admin -> Settings -> Report -> PixelPerfect security and enable the flag "Enable script execution". Refer to https://help.qlik.com/en-US/nprinting/November2020/Content/NPrinting/AdministeringQVNprinting/Admin-... and February 202 Release Notes.
Best Regards,
Ruggero
Thank you @Ruggero_Piccoli
This information has been consequently been added to the NPrinting Migration Playbook as well.
Thank you @Ruggero_Piccoli. I went to the Admin section and apparently completely skipped this part earlier today, sorry.
You are welcome. Good to read that you solved!
Best Regards,
Ruggero