In a Visual Studio reporting project for Microsoft Dynamics AX, you can define a report in a report model. A report consists of a collection of items, such as datasets, parameters, images, and report designs. A model can contain more than one report. Also, for this post I am assuming that all report services are…
Forfatter: Bo Jensen
Microsoft Dynamics Ax
How do I write a txt file using Microsoft Dynamics AX
by Bo Jensen •
You can use the TextIo X++ class or the CLRInterop. Here are 2 X++ jobs to demonstrate both approaches.
Microsoft Dynamics Ax
AX Error: Cannot execute a data definition language command on (). The SQL database has issued an error
by Bo Jensen •
If you are seeing the error ‘Cannot execute a data definition language command on (). The SQL database has issued an error’, this is how you can resolve it.
Microsoft Dynamics Ax, SQL Analysis Services
Cube and KPI reference for Microsoft Dynamics AX [AX 2012]
by Bo Jensen •
Cube and KPI reference for Microsoft Dynamics AX [AX 2012] Cube and KPI reference for Microsoft Dynamics AX [AX 2012] R2 and R3
Microsoft Dynamics Ax
Search for available putaway location using X++ | Kurt Hatlevik – Dynamics Ax Blog
by Bo Jensen •
Search for available putaway location using X++ | Kurt Hatlevik – Dynamics Ax Blog
Microsoft Dynamics Ax, SQL Reporting Services
Get list of printers in Dynamics AX 2012 for SSRS reports using Using X++
by Bo Jensen •
Get list of printers in Dynamics AX 2012 for SSRS reports [Using X++] « Sreenath Reddy G – Dynamics AX Consultant’s Blog
Microsoft Dynamics Ax, SQL Reporting Services
Display Barcode in SSRS report for Dynamics AX 2012
by Bo Jensen •
Display Barcode in SSRS report [Dynamics AX 2012, X++] « Sreenath Reddy G – Dynamics AX Consultant’s Blog
Microsoft Dynamics Ax
How To: Sending Reports to file in Dynamics AX
by Bo Jensen •
How To: Sending Reports to file – Dynamics AX Business Intelligence – Site Home – MSDN Blogs
Microsoft Dynamics Ax
Alex on DAX: How to send emails from AX without requiring Outlook
by Bo Jensen •
Sending emails from AX has been somewhat of a pain when it tries to use Outlook. This post is a simple code modification to one method in \Classes\Info\reportSendMail. I did not develop this code, I merely tweaked it. The original poster’s blog has disappeared, and I can only find non-working remnants all around the web…
Microsoft Dynamics Ax
Sending a report as email in X++
by Bo Jensen •
http://daynamicsaxaptatutorials.blogspot.dk/2010/07/sending-report-through-email-in-axapta.html
Microsoft Dynamics Ax, SQL Reporting Services
How to deploy the default SSRS reports in AX 2012
by Bo Jensen •
Commands taken from MSDN on how to manage SSRS reports in AX using Windows PowerShell
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