Options

Navision ver 5 on Sections vs Navision 2015 customization trial balance report

I have the following customization in trial balance report on version 5.
under sections of report - integer Body 2 - Presection

IF CurrReport.SHOWOUTPUT THEN BEGIN
IF ("G/L Account"."Balance at Date"=0) THEN BEGIN
IF ("G/L Account"."Balance at Date" <> "G/L Account"."Net Change") THEN
CurrReport.SHOWOUTPUT(TRUE)
ELSE
CurrReport.SHOWOUTPUT(FALSE);
END;
END;

I want to transfer this customization to Nav 2015.
Can you please help me how to do this?
Sign In or Register to comment.