Commands taken from MSDN on how to manage SSRS reports in AX using Windows PowerShell
Måned: maj 2012
Microsoft SQL Server
How to remove database locks in SQL-Server
by Bo Jensen •
Microsoft Dynamics Ax
Microsoft Dynamics Ax: How to pick and post packing slip
by Bo Jensen •
See here how to register a new InventPick and post a packingslip
Microsoft Dynamics Ax
Unbalanced X++ TTSBEGIN/TTSCOMMIT– How to recover from this error
by Bo Jensen •
If you end up running some code in Ax that have an uneven number of ttsBegin/ttsAbort calls you will end up with the following error message To recover from this annoying problem you can run this small job to automatic reset the ttsLevel to 0 in order to make Ax work properly again static…
Microsoft Dynamics Ax, SQL Reporting Services
Some reports in Dynamics AX 2012 do not fit to page properly when printed | ERP Technician
by Bo Jensen •
With the release of Microsoft Dynamics AX 2012, the report design and delivery platform changed significantly from the previous version. Reporting has shifted away from native X++ reports designed in MorphX to SSRS reports designed in Visual Studio. While working with AX 2012, some of the new SSRS reports will not render as expected when…
Webdevelopment
Deploying ASP.NET Web Applications in the Windows SharePoint Services 3.0 _layouts Folder
by Bo Jensen •
Deploying ASP.NET Web Applications in the Windows SharePoint Services 3.0 _layouts Folder
Microsoft Dynamics Ax
AX2012 Sales Invoice SSRS Reporting Error identified
by Bo Jensen •
While working and testing modifications to the Layout of the “Sales Invoice“ report in AX 2012, I have found a rather annoying error with language translation of the SSRS report. When you are printing a Sales Invoice, the report prints all labels according to the Language set in the Sales Invoice Header. (Found under…
Microsoft Dynamics Ax, SQL Reporting Services
Playing with SSRS report in dynamics ax 2012
by Bo Jensen •
How to print the SSRS report in dynamics ax 2012 from code. SrsReportRun srsReportRun; // initiate the report. srsReportRun = new SrsReportRun ("InventTruckTransactionReport.PrecisionDesign1"); srsReportRun.init(); srsReportRun.reportCaption("InventTruckTransactionReport.PrecisionDesign1"); // set parameters name, value. srsReportRun.reportParameter("TruckTransDS_JournalId").value("000161_070"); // suppress the dialog srsReportRun.showDialog(false); if( srsReportRun ) { // run the report srsReportRun.executeReport(); } How to save the SSRS report…
Microsoft Dynamics Ax, SQL Reporting Services
Creating SSRS-Reports in Dynamics AX 2012 – What’s no longer possible in AX-reports
by Bo Jensen •
Microsoft Dynamics Ax, SQL Reporting Services
Ax 2012 Deploy reports through code « Shashi's Ax.Net Space
by Bo Jensen •
These lines deploys SSRS Reports with X++ Code – Remember not to run this code in CIL or you will get runtime error. SRSReportManager srsRptMgr = new SRSReportManager(); SSRSReportConceptNode node = new SSRSReportConceptNode(); node = TreeNode::findNode(@"SSRS ReportsReportsSalesInvoice"); srsRptMgr.deploymentStart(); srsRptMgr.deployReport(node); srsRptMgr.deploymentEnd(); Ax 2012 Deploy reports through code « Shashi’s Ax.Net Space
Microsoft Dynamics Ax, SQL Analysis Services
Dynamics AX: AX 2012 – Process Cubes Error: translations in Standard Edition
by Bo Jensen •
Dynamics AX: AX 2012 – Process Cubes Error: translations in Standard Edition
