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..... }