I have a question on sorting. I'm using a linked entity (below is the fetch portion), is there any way to get this to sort properly using the aggregate column? I've tried to put order tags in at the entity and link-entity level (and both) nothing seems to have any effect. Thanks
<fetch mapping="logical" aggregate="true">
<entity name="p_account">
<attribute alias="aggregate_column" name="p_accountvalue" aggregate="sum" />
<link-entity name="b_acct" from="b_acctid" to="b_p_accountid" link-type="outer">
<attribute groupby="true" alias="groupby_column" name="plantype" />
</link-entity>
</entity>
</fetch>
*This post is locked for comments
I have the same question (0)