Fiscal Year Function
Hi,
I am using OBIEE 10.1.2 and would like to display the current fiscal year in a column formula
CASE
when to_char(sysdate,'mm')>= '04' then
to_number(to_char(sysdate,'yyyy'))||'/'||to_char(to_number(to_char(sysdate,'yyyy'))+1)
else TO_CHAR(TO_NUMBER(TO_CHAR(SYSDATE,'yyyy'))-1)||'/'||TO_NUMBER(TO_CHAR(SYSDATE,'yyyy'))
end Curr_FY
Can anyone help with converting this to OBIEE syntax?
Thanks