Printer is set as duplex printing. We need to force report to page break conditionally according to Page Number (odd/even).
In NAV5 we had this code:
IF (CurrReport.PAGENO DIV 2) <> ROUND(CurrReport.PAGENO / 2,1,'>') THEN
CurrReport.NEWPAGE;
Is there any smart solution in NAV7?
0