--- In development-axapta@yahoogroups.com, "karinasaenzs"
<karinasae...@...> wrote:
>
> Hi,
> 
> I am new to Axapta and am working on a report that has totals and 
> subtotals sections. 
> 
> In this sections I am working with queries that look like this:
> 
>                 select count(recid), ep_id_etapa, in_id_descripcion
>                 from _tipos group by ep_id_etapa, in_id_descripcion
>                 where _tipos.projid == _projTable.ProjId && 
> _tipos.ep_id_etapa == _tblInmueble.ep_id_etapa
> 
> 
> But I have'nt been able to display this information on the report, 
> must I do it with temporary tables?
> 
> or is there a better and simpler way of displaying this information?
> 
> Any help is greatly appreciated,
> Thanks,
> Karina
>



Hi karina 

try following code

select count(recid), ep_id_etapa, in_id_descripcion
from _tipos group by ep_id_etapa, in_id_descripcion,recid
where _tipos.projid == _projTable.ProjId &&
_tipos.ep_id_etapa == _tblInmueble.ep_id_etapa


and then print it on the report.
reply if any problem persists.....


Reply via email to