web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
Ax2012 SSRS Report Error

When designing SSRS reports in Ax2012, sometimes when we do changes to report’s temporary tables (like adding/removing fields) the change is not reflected in the report even if we deploy the report or restart the AOS.I have added a new field...

gangadhar reddy 527
Like (0)
Create SSRS report in AX 2012

Reports in Microsoft Dynamics Ax 2012 are based on SQL Server reporting services (SSRS) SSRS Before designing and executing the Report, SSRS needs to be configured. We can use a Query as a datasource or use report data provider class. 1. Using a q...

gangadhar reddy 527
Like (0)
Table Inheritance in Ax 2012

In Microsoft Dynamics AX 2012, tables can inherit, or extend, from the tables that are situated above them in a hierarchy. A base table contains fields that are common to all tables that derive from it – The table properties “Extends...

gangadhar reddy 527
Like (0)
Report data providers

This post discusses about the use of report data provider, contract  and controller classes for the SSRS report Contract class: This class is used to define the paramters that are required to be given before running the report. The parameter are ...

gangadhar reddy 527
Like (0)
Save SSRS report to PDF file and as Email attachment

We can save the SSRS report as a PDF file using the below sample code { SalesInvoiceController  salesInvoiceController; SalesInvoiceContract    salesInvoiceContract; Args                    args = new Args(); SrsReportRunImpl        srsReportRun; ...

gangadhar reddy 527
Like (0)
Global Address book

There is a significant change in Ax 2012 related to address framework. – This is built on party concept where you can have 2 types of party, organization and person for eg organization can be customer, vendor, business relation etc and perso...

gangadhar reddy 527
Like (0)
Export data to CSV file

Following code can be used to export data from Ax to a CSV file #FileCommaTextIo commaTextIo; FileIOPermission permission; CustTable custTable; str fileName = @”C:\test.csv”; permission = new FileIOPermission(fileName,#io_write); permi...

gangadhar reddy 527
Like (0)
Custom Lookup for a dialog field

This post discusses about creating a custom lookup field on a dialog. Following are the methods and code required to achieve the purpose.(Assuming the class is extending the RunbaseBatch) –> A lookup method is required in the first place....

gangadhar reddy 527