How to Calculate the Current Fiscal Year
Views (3946)
In Navision, there’s no function that will give you the fiscal year according to what you’ve setup on the Accounting Period table. Here’s a code that will get the current fiscal year based on the accounting period:
AccountingPeriod is a record variable to table 50
Date1 and Date2 are date variables
AccountingPeriod.RESET;
AccountingPeriod.SETRANGE(”New Fiscal Year”,TRUE);
AccountingPeriod.”Starting Date” := WORKDATE;
AccountingPeriod.FIND(’=<’);
Date1 := AccountingPeriod.”Starting Date”;
IF AccountingPeriod.NEXT = 0 THEN
Date2 := 12319999D
ELSE
Date2 := AccountingPeriod.”Starting Date” - 1;

Like
Report
*This post is locked for comments