Thanks again. I got a WRITEABLE property named in the class with blanking out the policyDetail property. To answer your previous questions... I have the subqueires data in the policyDetailResults resultMap. I want to update/replace the policySrcResult resultMap's fields with the fields from policyDetailResults. i.e., policySrcResult.busEntity=policyDetailResults.busEntity. I want to do this so that I have one object in the end. With the way it is now, in my java model, I have to do policy.setBusEntity(policy.getPolicyDetail().getBusEntity()) rather than it already being set. Thanks Angel ________________________________ From: Poitras Christian [mailto:Christian.Poitras@ircm.qc.ca] Sent: Friday, September 15, 2006 2:55 PM To: user-java@ibatis.apache.org Subject: RE: Remap resultMap Maybe the empty property attribute works in iBATIS resultMaps. I haven't tried it but it would result in your policySrcResult object properties busEntity and yrsInBus to be setted again (twice) with the same values has in policyDetail. If this gives you the correct result, consider removing these lines from policySrcResult resultMap. Christian ________________________________ From: Angel Braasch [mailto:ABRAASCH@fcci-group.com] Sent: Friday, 15 September 2006 14:15 To: user-java@ibatis.apache.org Subject: RE: Remap resultMap Thank you for the reply. When I tried the below I got an error that BUSINESS_ENTITY is not a property of policyDetail. I changed it to busEntity, but I didn't get the results I was looking for. Maybe I'm not explaining this well. I want to take the results of the below policyDetail property (which includes busEntity,yrsInBus) and re-assign them to policySrcResults' busEntity and yrsInBus properties. Thanks again for any assistance. Angel ________________________________ From: Poitras Christian [mailto:Christian.Poitras@ircm.qc.ca] Sent: Friday, September 15, 2006 1:50 PM To: user-java@ibatis.apache.org Subject: RE: Remap resultMap Try this. Christian ________________________________ From: Angel Braasch [mailto:ABRAASCH@fcci-group.com] Sent: Friday, 15 September 2006 13:41 To: user-java@ibatis.apache.org Subject: RE: Remap resultMap I've been using IBATIS only for a short time....so I apologize if this a newbie question. Can anyone help me with this posting? Angel ________________________________ From: Angel Braasch [mailto:ABRAASCH@fcci-group.com] Sent: Wednesday, September 13, 2006 12:33 PM To: user-java@ibatis.apache.org Subject: Remap resultMap I have a policy object that is getting mapped in a resultMap. In that resultMap I have to run another query to get additional properties. This is a 1:1 situation. I want to remap those additional properties(from policyDetailResults) back to the original resultMap(policySrcResult). I have tried to point "getPolicyDetail" to resultMap="policySrcResult" remapResults="true". But then I got an Invalid column name on my policyNumber field. I'm at a loss on how to do this. Below are code snippets. Any assistance would be greatly appreciated. Thanks, Angel public class Policy{ private Policy policyDetail = null; private String busEntity; private String yrsInBus; private String policyNumber = null; private String polType = null; getters/setters..... }