Have you checked the SAP Note 2014359? Talk to Admin team before making the change just to make sure you are not impacting anything else.
http://service.sap.com/sap/support/notes/2014359
Symptom
Error received for date objects:[Teradata][ODBC Teradata Driver][Teradata Database] '{' ('7B'X) is not a valid Teradata SQL token.(IES 10901)
Environment
- Teradata
Reproducing the Issue
- Create a webi report based on teradata database.
- In query filter,take a date object and select a value.
- Click on refresh/Run query.
- It gives the error.
Cause
- All dates types (such as Timestamp) in Teradata DB are not always seen as dates with client tools; some are seen as type character.
- The error message are displayed because dates seen as characters are retrieved with the ODBC syntax applied to dates. (For example, {d 'yyyy-mm-dd'}. )
- If you try the same SQL in ODBC, it would probably fail. This demonstrates that problem is not on the BusinessObjects side.
Resolution
In the dataaccess folder,go to the .prm file and make the following changes:
Replace InputDateFormat={/d 'yyyy-mm-dd'} with InputDateFormat='yyyy-mm-dd'.