Hello,<br>a have a table TmpAjustCpe which references the table projet <br>here is the mapping for this relation in the xml file  projet.xml :<br><br> <span style="color: rgb(51, 102, 255);">&lt;set name=&quot;tmpAjustCpes&quot; inverse=&quot;true&quot; &gt;</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">            &lt;key&gt;</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">                &lt;column name=&quot;PRJ_ID&quot; precision=&quot;7&quot; scale=&quot;0&quot; not-null=&quot;true&quot; /&gt;</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">            &lt;/key&gt;</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">            &lt;one-to-many class=&quot;com.thales.project.TmpAjustCpe&quot; /&gt;</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">        &lt;/set&gt;</span><br><br>in the bean associated to projet , i wanna access a property of TmpAjustCpe<br>for this i implemented this getter <br><br><span style="color: rgb(51, 102, 255);">public BigDecimal getDernierCpeEmporte() {</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">        if(getProjet().getTmpAjustCpes()!=null){</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">            </span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">        </span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">        for (Iterator&lt;TmpAjustCpe&gt; iterator = getProjet().getTmpAjustCpes().iterator(); iterator.hasNext();) {</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">            TmpAjustCpe tmpAjustCpe = (TmpAjustCpe) iterator.next();</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">            return tmpAjustCpe.getDernierCpeEmporte();</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">        }</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">        }</span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">        return BigDecimal.ZERO;</span><br style="color: rgb(51, 102, 255);">
<span style="color: rgb(51, 102, 255);">        </span><br style="color: rgb(51, 102, 255);"><span style="color: rgb(51, 102, 255);">    }</span><br style="color: rgb(51, 102, 255);"><br>the problem is that the data related to TmpAjustCpe have not been loaded<br>
any one have an idea what should i do in the xml file to load this property, <br><br>Regards<br>Elyes