Skip to main content

Posts

Get particular Financial dimension value from default dimension in Axapta

To get particular dimension value from default dimension you can try below code as per your requirement. DimensionAttributeValueSetItem dimvalue; DimensionAttributeValue dimAttValue; DimensionAttribute dimAtt; int length; //DimAttributeOMCostCenter viewCostCenter; DimensionFinancialTag viewCostCenter; DimAttributeOMDepartment viewDepartment; DimensionFinancialTag locations; str name; ; length = 0; Select dimvalue join dimAttValue join dimAtt Where dimvalue.DimensionAttributeValueSet == _DimensionDefault && dimvalue.DimensionAttributeValue == dimAttValue.RecId && dimAttValue.DimensionAttribute == dimAtt.RecId && dimAtt.Name == 'ProductCategory'; select viewCostCenter where viewCostCenter.Value == dimValue.DisplayValue; return viewCostCenter.Description;

Import Budget Register line In Ax 2012

To Import Budget Register line In Ax 2012, you get Idea from below code. You need to create budget register header then you can your CSV file and apply the code to import. you also need to declare variables as used in below code. budgetTransactionLine = new AxBudgetTransactionLine(); budgetTransactionLine.parmBudgetTransactionHeader(BudgetTransactionHeader::findByTransactionNumber(c1,Ledger::current()).RecId); budgetTransactionLine.parmDate(str2Date(c2,123)); budgetTransactionLine.parmTransactionCurrency(c10); budgetTransactionLine.parmBudgetType(str2enum(budgetType,c11)); budgetTransactionLine.parmTransactionCurrencyAmount(str2num(c9)); budgetTransactionLine.parmAccountingCurrencyAmount(str2num(c9)); accEntryPattern = [strFmt("%1-%2-%3-%4-%5-%6-%7",c3,c4,c5,c6,c7,c8),c3]; if(c4) { accEntryPattern += "LegalEntity";

Class and method to post packing slip for all load form in ax 2012

In warehouse management In Ax 2012, All loads form exists and load can be created from purchase orders and you can post packing slip from load form. If you have any customization during packing slip posting then you can refer below class method to put your code. \Classes\WHSPostPackingSlip\runPackingSlip If you want to update anything in vendPackingSlipJour and vendPackingSlipTrans table during packing slip posting. Then you can refer below class. \Classes\PurchPackingSlipJournalCreate Happy daxing.

Microsoft Windows : Understanding Control panel features and system settings

I want to share one interesting clip from Youtube which will show you Control panel features and settings for  Windows operating system. If you like this clip then waiting for your subscription to get daily updates on new topics.

Important thing to learn in Project Management Module in Axapta

I am sharing here one Important thing to learn in Project Management Module in Axapta. Please watch this clip to learn free and subscribe to learn more. AX 2012 Project types and Time & Material cycle. We are discussing here all the  Project types available AX 2012. This is  Microsoft Dynamics AX 2012 Demo for Project Management and Accounting concepts for Project types.

Ax 2012 Item master fields and Item Model Group understanding

Sharing Information for Ax 2012 Item master fields and Item Model Group understanding  I am sharing information of  clip which will show you Ax 2012 Item Master product Product Master, CW Catch weight Business Examples.Difference between item type service and Item, Product and product master, Element of items like name, search name etc ar properties of product in Axapta. Item master fields Item Model Group understanding  I want to share clip which will show you Ax 2012 Item Model Group properties and its  fields detail Path of Model group  in Ax 2012 is  as below Inventory management  Setup -Inventory - Item model groups. Other Important Inventory model things are as follows: FIFO LIFO LIFO date Weighted avg. Weighted avg. date Standard cost Moving average And other field related to Item Model Group. InclPhysicalValueInCost InventModel InventModelSecCur_RU MandatoryDeduct MandatoryPick MandatoryReceive

Sharing Tips quickly for Performance Improvement for Axapta

Top Tips for Ax 2012 Performance improvement. I am sharing This clip will show you Top 10 tips for SQL performances on Ax Quickly. 1. How to Check Client and Server configuration of ax 2012. 2. Check memory setting options for SQL server databases. 3. Regular checking of Disk size is required. 4. Regular Cleanup of log data from ERP. 5. Client Usage data cleanup at ax side. 6. Index optimization(use include column option in index) and new index creation at Ax. 7. Reindexing and Rebuilding Indexes. 8. Use set based operations is required to improve the performance of execution of logic. insert_recordset , update_recordset and delete_from 9. Check batch jobs running sequences on Ax side. 10.Don’t create indexes directly on SQL for Axapta. Visit below clip to get practical knowledge for the above points. If you like this video do not forget to subscribe that channel. 

View creation from other database from SQL for Ax database

To create view  from other database from SQL for Ax database you can get hint by below  script. SET QUOTED_IDENTIFIER ON GO Create VIEW [dbo].[TestCustomer] AS SELECT [CUSTGROUP] ,[ACCOUNTNUM] FROM MicrosoftDynamicsAX.dbo.CUSTTABLE group by [CUSTGROUP] ,[ACCOUNTNUM] ; GO Source database is MicrosoftDynamicsAX and destination is testDb in this clip. Just see clip to create view from custtable to other database new view .. Just need to execute script in query editor of SQL. Same way you can include more columns by alter alter THANKS FOR YOUR PATIENT ON WATCHING CLIP.YOU CAN SUBSCRIBE ON MY YOUTUBE CHANNEL TO GET FUTURE UPDATE TO IMPROVE YOUR KNOWLEDGE. GROUP BY IS REQUIRED TO MAKE VIEW  READ ONLY. SO ITS IMPORTANT.

Calculate Time Consumption in hours in Ax 2012

Code to get total time consumed between two times means if time one is 14:10 and time two is 15:40 then you want to get difference time in hours only like in this example it will be 1.5 hours. Getting time in hours in very difficult but you can get it easily by writing one simple method. # int seconds, minutes, hours, totalTime; # str timeStr = "",minstr=""; # # if (_startTime > _endTime) # { # totalTime = _endTime + (str2time('23:59:59') - _startTime); # } # else # { # totalTime = _endTime - _startTime; # } # # seconds = totalTime mod 60; # minutes = totalTime mod 3600 div 60; # hours = totalTime div 3600; # # if (hours > 0) # if (hours == 1) # timestr = timeStr + strFmt("%1", hours); # else # timestr = timeStr + strFmt("%1", hours); # #

Display time difference in hours in axapta

To Display time difference in hours in Axapta  you can use below code where timeConsumed is a method to get difference between from time and to time. You need to convert string to time first to get the right value. TimeofDay fromTime,toTime; // Time variables ; fromTime = str2time("8:50 am"); toTime = str2time("10:50 am"); info(strFmt("%1",timeConsumed(fromTime,toTime)));

Ax 2009 GST Installation hints

Prerequisites for GST Hotfix installation at Ax 2009 1.GST patch can only be installed for AX2009SP1 plus Consolidated GLS Layer for India (KB960013).  The detail information can be found at Microsoft Partner source link. Or Its  recommendation  you upgrade to RU8 for future better AX2009 hotfix supporting. However, RU8 is not a prerequisition to install GST patch but If its upgraded to RU 8 then no need to apply  (KB960013) otherwise it will show message KB already installed like that. 2.Before you install India GST hotfix, please make sure you have installed AX2009 hotfix KB971935, KB2028696, and KB971154. You can download hotfix from Microsoft partner source link for application and kernel both version.   Restart AOS and full compile after each KB gets installed.   You must Restart AOS and full compile after install the GST patch before open AX client.  3.Install both the kernel fix and the application fix  for India GST.  First you need to install kernel hotfix th

Classes to print,post sales order in ax 2012

1/To interacting with SalesEditLines form during sales invoicing the class is SalesFormLetter_Invoice . \Classes\SalesFormLetter_Invoice 2.For Creating journal data for sales order during invoice is SalesInvoiceJournalCreate \Classes\SalesInvoiceJournalCreate 3.For Posting a journal for sales order you can using below class for any code debugging and issue or customization. \Classes\SalesInvoiceJournalPost 4. If you want print customize sales order invoice report in Ax for sales order invoice then you can make changes in below class. \Classes\SalesInvoiceJournalPrint   Method to call report is printJournal. Path of method is as below.   \Classes\SalesInvoiceJournalPrint\printJournal 5.For Creating parm data during sales order  invoice below class you can check . \Classes\SalesFormletterParmDataInvoice