I figured out how to make the connector work. The below will work if you have a 4-4-5 fiscal year. It would need to be adjusted to account for any variance of that.
FP1.FISCALYEAR,
FP1.FISCALPERIOD,
CASE WHEN FP1.PERIODENDINGDATE = 01 THEN
DateAdd(dd, -27,FP2.PERIODENDINGDATE)ELSE DateAdd(dd, 1 ,FP2.PERIODENDINGDATE) END AS PERIOD_BEG,
FP1.PERIODENDINGDATE AS PERIOD_END
FROM "GL_FiscalYear"
INNER JOIN "GL_FiscalYearDetail" AS FP1
ON "FP1"."FiscalYear" = "GL_FiscalYear"."FiscalYear"
LEFT JOIN "GL_FiscalYearDetail" AS FP2
ON "FP2"."FiscalYear" = "FP1"."FiscalYear" AND "FP2"."FiscalPeriod" = "FP1"."FiscalPeriod"-1
------------------------------
Tina Meacham
RKL eSolutions, LLC
------------------------------
Original Message:
Sent: 04-16-2024 09:36
From: Todd Martin
Subject: Sage Intelligence Fiscal Year 4-4-5
Don't do the calc in connector. Do it in Excel and have multiple years from GL_FiscalYearDetail, then calc based on previous PeriodEndingDate by adding one day to it. I created the same periods in my test system for year 2023 and 2024.

------------------------------
Todd Martin
MBA Business Software
https://www.mbabsi.com
------------------------------
Original Message:
Sent: 04-15-2024 11:13
From: Tina Meacham
Subject: Sage Intelligence Fiscal Year 4-4-5
Hi Todd
In test ABC if you change the fiscal year to something like the attached excel, then run any of SI fiscal year reports. The beginning date is wrong. I adjusted days, but it worked on one month but not the other months. This is fiscal year my client has.
------------------------------
Tina Meacham
RKL eSolutions, LLC
Original Message:
Sent: 04-14-2024 19:52
From: Todd Martin
Subject: Sage Intelligence Fiscal Year 4-4-5
Could try an excel formula like this =DATE(LEFT(GL_FiscalYearDetail.PeriodEndingDate,4),MID(GL_FiscalYearDetail.PeriodEndingDate,5,2),RIGHT(GL_FiscalYearDetail.PeriodEndingDate,2))-1
if the connector formula isn't working right. What were the results you were getting. Maybe we can tell by the pattern what the formula is doing to see how to address it.
------------------------------
Todd Martin
MBA Business Software
https://www.mbabsi.com
Original Message:
Sent: 04-14-2024 19:50
From: Todd Martin
Subject: Sage Intelligence Fiscal Year 4-4-5
When I look at the connector for the fisical year detail on the prebuilt report I see the formula as
DateAdd(mm,-1, "FP1"."PeriodEndingDate" + 1)
------------------------------
Todd Martin
MBA Business Software
https://www.mbabsi.com