Hi,
I am trying to pull data from Oracle View using WCF Oracle EBS adapter. I am able to retrieve all the data from the View. However, when I try to use Filter, I get below error:
ORA-00933: SQL command not properly ended —> Oracle.DataAccess.Client.OracleException ORA-00933: SQL command not properly ended
Below is XML that gets generated that calls the View:
<ns0:Select xmlns:ns0=”http://schemas.microsoft.com/OracleEBS/2008/05/Views/APPS/PERSON_V“> <ns0:COLUMN_NAMES>*</ns0:COLUMN_NAMES><ns0:FILTER>EMP_NUM=’X9947′</ns0:FILTER></ns0:Select>
If I leave <FILTER> tag blank, I get all the rows without any problem. I also checked column name used in the Filter and tried other columns also but got same error.
Any help is appreciated.
Thanks,