Hi All,
I'm using the following view in my report, but for some reason the first column is not showing the actual data that is in the view.
CREATE VIEW POSH.VWHOLIDAY
(HOLIDAY, HLDATE, HLNAME) AS
(SELECT (SUBSTR(CHAR(HLDATE),1,2)||SUBSTR(CHAR(HLDATE),4,2)) AS HOLIDAY ,HLDATE,HLNAME FROM...