axblog4u.wordpress.com
Santosh.R | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/author/santosh8483
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Address/Contact Information: Export data using View in AX 2012. January 29, 2014. It’s been a while since I have blogged and this time I will start on newer version named Dynamics AX2012. Before get into the act, I would like to take this opportunity to wish all a “Very Happy and Prosperous New Year 2014”. Although we have tools like DIXF/AIF for exporting data. In order to get the Customer Id, Customer Name, P...
axblog4u.wordpress.com
January | 2014 | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2014/01
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Archive for January, 2014. Address/Contact Information: Export data using View in AX 2012. January 29, 2014. It’s been a while since I have blogged and this time I will start on newer version named Dynamics AX2012. Before get into the act, I would like to take this opportunity to wish all a “Very Happy and Prosperous New Year 2014”. Although we have tools like DIXF/AIF for exporting data. In order to get the Cu...
axblog4u.wordpress.com
Tip: QueryValue function in Dynamics AX | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2012/09/06/tip-queryvalue-function-in-dynamics-ax
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Tip: QueryValue function in Dynamics AX. Tip: QueryValue function in Dynamics AX. September 6, 2012. Below a sample example is illustrated on how queryValue usage impacts the data retreival in reports based on different customer data. Enlarge the screen to view the actual content of the blog. Please check out for the XPO in the shared location: SharedProject Tip QueryValue. HaPPy qURERING vALUE in AX.
axblog4u.wordpress.com
Santosh Ramamurthy AX Blog | Technical contents related to Microsoft ERP Product (Dynamics AX) | Page 2
https://axblog4u.wordpress.com/page/2
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Generation of CodePage using X. April 25, 2012. Case Study: In this demo scenario, we are going to build Windows Code page using X class. For this project, I have build a generation class which basically returns the list of available codePage. BuildCodePage() { System.Text.EncodingInfo[] encodingInfoArray; System.Text.EncodingInfo encodingObject; RecordInsertList recordInsertList = new. Delete from codePage; try.
axblog4u.wordpress.com
Generating Lookups using SysAttributes Class – Dynamics AX2012 | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2012/06/19/generating-lookups-using-sysattributes-class-dynamics-ax2012
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Generating Lookups using SysAttributes Class – Dynamics AX2012. Generating Lookups using SysAttributes Class – Dynamics AX2012. June 19, 2012. In earlier or current release we have different ways of displaying lookups using table lookup, field group lookups, building reference lookup from custom form using FormAutoLookupFactory. SysClassEnabledAttributes(boolean: true, classStr(SysEnabledDocument) ]. SysClassEn...
axblog4u.wordpress.com
About | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/about
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). My favourite hobbies are playing/watching all kinds of sports! Leave a Reply Cancel reply. Enter your comment here. Please log in using one of these methods to post your comment:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out. Dynamics AX Community Blog.
axblog4u.wordpress.com
Tip: Suppress “Save Changes” prompt when you close a Excel workbook using X++ in Dynamics AX | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2012/09/07/tip-suppress-save-changes-prompt-when-you-close-a-excel-workbook-using-x-in-dynamics-ax
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Tip: Suppress “Save Changes” prompt when you close a Excel workbook using X in Dynamics AX. Tip: Suppress “Save Changes” prompt when you close a Excel workbook using X in Dynamics AX. September 7, 2012. Prompt when you close workbook in Excel. To suppress the following, try forcing a workbook to close without saving changes. The best way of implementing this via x code [ sysExcelWorkbook.saved(true). Address/Co...
axblog4u.wordpress.com
Reading Selected Node in XML – Dynamics AX2012 | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2012/08/21/reading-selected-node-in-xml-dynamics-ax2012
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Reading Selected Node in XML – Dynamics AX2012. Reading Selected Node in XML – Dynamics AX2012. August 21, 2012. Below a sample job is illustrated to read selected (multiple) nodes from a given XML. SR ReadSelectedNode XML(Filename fileName) { #define.node('INFORMATION/ ROWS/ROW'). XmlDocument xmlDocument; XmlNode xmlInformationNode; XmlNodeList xmlInformationsNodeList; XmlNodeList xmlChildNodeList; int. Notify...
axblog4u.wordpress.com
Tip: COMVariantType for Real values in Dynamics AX | Santosh Ramamurthy AX Blog
https://axblog4u.wordpress.com/2012/09/06/tip-comvarianttype-for-real-values-in-dynamics-ax
Santosh Ramamurthy AX Blog. Technical contents related to Microsoft ERP Product (Dynamics AX). Tip: COMVariantType for Real values in Dynamics AX. Tip: COMVariantType for Real values in Dynamics AX. September 6, 2012. Reading cell content from excel template for COM variant type VT R4 or VT R8 is always little tricky. Reading real value can be done in following ways. 1) num2Str0( variant.double(), 0);. 2) num2str( variant.double(), 0, numOfDec( variant.double() , 1, 0);. ValueStr; ; switch. ValueStr; } ;...