This routine is returning 12/31/2016 instead of 12/31/2015 and messing up a report. Any idea where it is going wrong?
LET date_month = MONTH(p_selection.date_from)
IF date_month = 12 THEN
LET date_month = 1
LET p_selection.date_from = p_selection.date_from + 1 UNITS YEAR
LET date_thru = date_month,"/01/",YEAR(p_selection.date_from)
LET p_selection.date_from = p_selection.date_from - 1 UNITS YEAR
ELSE
LET date_month = date_month + 1
LET date_thru = date_month,"/01/",YEAR(p_selection.date_from)
END IF
LET p_selection.date_thru = date_thru CLIPPED
IF YEAR(p_selection.date_thru) <> YEAR(p_selection.date_from) THEN
LET p_selection.date_thru = p_selection.date_thru + 1 UNITS YEAR
END IF
LET p_selection.date_thru = p_selection.date_thru - 1
Here's some old code that's not seen the light of day in a while, but is still valid I4GL.
ltmonth.4gl
fnmonth.4gl
lastthismonth.spl
And here's some SPL based on the I4GL above:
firstnextmonth.spl
Note the alternative expression. It works, but it is an incredible mixture of DATE and DATETIME calculations.