Our support engineers have assembled the top recommended solutions for you.
Microsoft Dynamics AX 2012CRM Connector in Microsoft Dynamics AX 2012Financials Management in Microsoft Dynamics AX 2012Upgrading to Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2009
Application Object Server (AOS)
Enterprise Portal and Role Centers
Inventory Costing in Microsoft Dynamics AX 2009
Invoice Settlements/Discounts/Reversals
SSRS and SSAS Integration
Workflow
I have developed a report on axapta report designer and i need to limit the number of records upto 30 records per page can anyone know how to do it ?
Hi,
You can do this by customizing the fetch() method of your report.
basically you loop through your query and add this piece of code :
int cpt = 0; ;While (queryrun.next()){ if (cpt && cpt mod 30 == 0) { element.newPage(); } // your custom code with element.send(queryrun.get(tablenum(YourTable)) ... cpt++;}