Hi Jeff, You've got the fkcolumn thing backwards.
property name="Owner" fieldtype="many-to-one" cfc="com.user.User" > fkcolumn="idUsers" missingRowIgnored="true"; > In your Client object, the fkcolumn for the Owner is the column/property within the Client which references the primary key of the Owner/User record. So Hibernate is looking for the column in the fkcolumn attribute on your Client object, not the User. And obviously, it's not there. Try 'fkcolumn="idOwner".' -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA 30306 404.589.0560 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353300 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

