Thursday, October 25, 2018

java.sql.SQLException: Invalid column type in OAF

This blog is about how to resolve the above error.

This error is related to VO. If we are defining any dynamic parameters in VO like below then we might come across this error:

Eg.:
SELECT to_char(order_number) AS order_number, flow_status_code  AS order_status
FROM oe_order_headers_all WHERE ORIG_SYS_DOCUMENT_REF like :1 ||':'||'%'



Select Binding style as "Oracle Positional" and your problem will get resolved. Write your comments if you are still facing difficulty.

No comments:

Post a Comment