I have a strange problem, my date prompt differs over 2 environments.
When I fill-in the 04-2014 the DEV server does is correct (‘01-04-2014 00:00:00’) but POC server gives a different date (‘31-03-2014 22:00:00’).
The report and universe are promoted via promotion management.
A nice note, when I use client tools from the DEV server the report is running file on POC. But when I do it through launchpad the SQL makes above mention change.
I checked the oracle.prm file but they matched, and i didnt found any relevent parameters.
Anybody knows what chauses this strange behaviour?
DEV server:
( ( to_date (PERIODEN.MAAND_JAAR,'mm-yyyy') ) between add_months(to_date('01-04-2014 00:00:00', 'DD-MM-YYYY HH24:MI:SS'),-12) and to_date('01-04-2014 00:00:00','DD-MM-YYYY HH24:MI:SS') )
POC server:
( ( to_date (PERIODEN.MAAND_JAAR,'mm-yyyy') ) between add_months(to_date('31-03-2014 22:00:00', 'DD-MM-YYYY HH24:MI:SS'),-12) and to_date('31-03-2014 22:00:00','DD-MM-YYYY HH24:MI:SS') )