SAP BO Freehand SQL date formatting (Oracle db)

business-intelligencedateoracleperformancesap

My original query worked perfectly via SQL Developer:

select * from [table] where DT_CURRENT_DT = '15-OCT-18'

However when ran via freehand SQL in SAP BO I got no results.
After running the query with no conditions I noticed that BO re-formats the date to 10/15/18

Best Answer

to_date function solved the issue and now the condition is recognized by BO's freehand SQL.

DT_CURRENT_DT = to_date('10/15/18', 'MM/DD/YY')