Question
CIBC
CA
Last activity: 1 Jun 2017 11:56 EDT
obj-browse running to error when using "integer property Is Equal intege param number" as the select condition...
Hi, I got error message when I used obj-browse work objects using " .page.property Is Equal param.number". all .page.property and param.number are integer and .page.property has been exposed.
- There was a problem getting a list: code: 0 SQLState: 42883 Message: ERROR: operator does not exist: numeric = character varying
- Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
- Position: 162
Same condition is used for report, it works fine.
any suggestion? thanks in advance.
***Updated by Moderator: Marissa to update categories***
There is a type mismatch. I think the properties you are using for the criteria are not of same type. One is of type text and the other one is of type integer. Most probably your parameter is of type text because that is the default type assigned to a parameter. Change it to integer. The Is Equal does not work for Operands with different type.