Crystal 9
Oracle 9i
Hi guys,
Im having an issue with one of my parameters in a command i have. I have set the parameter up in the command and have set the defaults to S or L. For some reason tho, Crystal keeps telling me that 'S' is an invalid identifier. Can anyone see anything wrong with the bit of code below? i have only attached this small part because everything else if fine without it.
AND ("CUSTOMER_ORDER_LINE_TAB"."REAL_SHIP_DATE">=
(case when upper({?start_date}) = 'S' then
(last_day(add_months((sysdate),-2))+1)
when upper({?start_date}) = 'L' then
(last_day(add_months((sysdate),-1))+1) else to_date('{?start_date}','DD/MM/YYYY')
end)
Oracle 9i
Hi guys,
Im having an issue with one of my parameters in a command i have. I have set the parameter up in the command and have set the defaults to S or L. For some reason tho, Crystal keeps telling me that 'S' is an invalid identifier. Can anyone see anything wrong with the bit of code below? i have only attached this small part because everything else if fine without it.
AND ("CUSTOMER_ORDER_LINE_TAB"."REAL_SHIP_DATE">=
(case when upper({?start_date}) = 'S' then
(last_day(add_months((sysdate),-2))+1)
when upper({?start_date}) = 'L' then
(last_day(add_months((sysdate),-1))+1) else to_date('{?start_date}','DD/MM/YYYY')
end)