Hi,
I have a query that select different values of attributes (of Transactions).
How can I display into a table, rows with the same values only once?
Displayed data does not need to be persistent.
<table id="transactionscustTable"
height="232px"
<columns>
<column id="enduser"/>
</columns>
<rows datasource="transactionscustDs"/>
</table>
transactionscustDs.setQuery("select e from crm$Transaction e\n" + "where e.enduser = :ds$organizationDs" );
(select distinct doesn’t help because are different transaction with the same attributes)