Skip to main content

Posts

Business connector error On EP page Deployment in Axapta

Error Description: While deploying EP page form Ax AOT getting business connector error. Error  “The Web Part page  was not created correctly on the site. No .NET Business Connector session could be found.” Session Release for Microsoft Dynamics failed. No .NET Business Connector session could be found. Microsoft.Dynamics.Framework.BusinessConnector.Session.Exceptions.NoKernelSessionException at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.get_AxaptaAdapter() at Microsoft.Dynamics.Framework.Portal.AxWebSession.WebSessionClientRemove() at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.Release(ICacheContext context) Session log on for Microsoft Dynamics failed. Dynamics Adapter LogonAs failed. Microsoft.Dynamics.Framework.BusinessConnector.Session.Exceptions.FatalSessionException at Microsoft.Dynamics.Framework.BusinessConnector.Session.DynamicsSession.HandleException(String message, Exception ex

Split Email by delimiter in axapta

To Split Email by delimiter in axapta you can try below code #define.EmailDelimiter(",") List list; str _emailIdList; container sendList; ListIterator iterator; boolean valid; ; _emailIdList = "test@gmail.com,test1@gmail.com,test2@gmail.com,test3@gmail.com,test4@gmail.com"; valid = true; list = new List(Types::String); list = Global::strSplit(_emailIdList, #EmailDelimiter); iterator = new ListIterator(list); while(iterator.more()) { info(strfmt("%1",iterator.value())); sendList += iterator.value(); iterator.next(); } Strsplit used to split the email list you can try and special character to check it.

split datetime in hour minutes second in different timezone in ax 2012

This is the example to  split datetime in hour minutes second in different timezone in ax 2012. TransDateTime myDateTime=DateTimeUtil::applyTimeZoneOffset(DateTimeUtil::getSystemDateTime(),Timezone::GMTPLUS0300KUWAIT_RIYADH); int hours; int minutes; int seconds; ; info(datetime2str(myDateTime)); hours=DateTimeUtil::hour(myDateTime); minutes=DateTimeUtil::minute(myDateTime); seconds=DateTimeUtil::second(myDateTime); info(strfmt('Hours %1 - Minutes %2 - Seconds %3',int2str(hours),int2str(minutes),int2str(seconds))); To get different timezone like GMT,India etc you can get from below screen.

How to get Enum value in String for Query base view in Axapta

To get Enum value in String for Query base view in Axapta 2012 you can try below code sample for your method. Here example will return label enum value you can use for name also. public static server str ItemType() { tableName viewName = identifierStr(ViewName); DictEnum dictEnum = new DictEnum(enumNum(ItemType)); Map enumValues = new Map(Types::String, Types::String); int n; for (n = 0; n < dictEnum.values(); n++) { enumValues.insert(int2str(dictEnum.index2Value(n)),SysComputedColumn::returnLiteral(dictEnum.index2Label(n))); } return SysComputedColumn::switch( SysComputedColumn::returnField(viewName, identifierStr(InventTable_1), fieldStr(InventTable, ItemType)), enumValues, SysComputedColumn::returnLiteral(dictEnum.index2Symbol(n))); }

Purchase Order Invoice posting common Error in Ax 2012

Some times we face Purchase invoice creation and posting common error like blank invoice line,invoice no etc and its happen due to closing invoice form without invoicing . To resolve that issue you need to do below steps. Go To. Path -> account payable -> Vendor invoice -> Pending vendor invoice Select the vendor invoice then you can fill the information and try to post but if there is  incomplete data in invoice form and not posted than it can be stored in invoice history. Path of invoice history form is as below. Path -> account payable -> inquiries ->Invoice history and matching details Filter the purchase order and delete it than  you can open vendor invoice and post without any problem.

Ax 2012 purchase order posting classes tables

Following are the Ax 2012 purchase order posting class on different stages of postings. 1. Purchase order confirmation- Class name -purchpurchorderjouranlcreate  2.Purchase order reciptlist-Class name -purchreciptlistjournalpost 3. Purchase order packing slip or GRN-Class name -purchpackingslipjournalpost 4. Purchase order invoice-Class name -purchinvoicejournalpost Above are posting class will hit while posting your purchase order with confirmation,receipt list,packing,invoice . If you are facing any issue then you can put debug on required methods on above classes as per posting. 1.Tables Hits to store final Purchase order confirmation  Purchpurchaseorderjour,purchpurchase order trans 2.Tables Hits to store final Purchase order GRN Vendpackingslipjour and Vendpackingsliptrans 3.Tables Hits to store final Purchase order Invoice Vendinvoicejour and vendInvoiceTrans

Insert Label by Code in Axapta in any language

To Insert Label by Code in Axapta in any language  you can try below code. This code will show you label code as output in message box. SysLabelEdit SysLabelEdit = new SysLabelEdit(); info(strFmt("%1", SysLabelEdit.labelInsert('En-US', 'Test Label', 'Test Label', SysLabelApplModule::None))); You can try this code to do label creation fast to save your time . I hope this really help you.

Conceptual areas and development environment Cloud architecture in Ax 7 Rainier

Purpose of batch jobs used in Axapta

1.Journalize finalized product receipts Batch job Purpose of this batch job is to clear out receipt accrual balances when there is a difference between Purchase order receipt and Purchase order invoice. 2.Change based alerts Batch Job When you set change base alert on field then notification generated on ax system for that activity of notification this job used. 3.Email distributor batch Job Its used to send email,on which parameter set through alert and also used to send email notification for workflow.

Getting Management Reporter CU 7 Error during using syncing Ax 2012

Error Details: We are not able to add new user in Management report and getting below error form integration log . [ax 2012 companies to company] has encountered an error,processing will be aborted, Error text;A user being integrated could not be found on the specific domain Solution: You can resolve above error by following steps. 1. Get list of Ax users . 2. Get list of domain users. 3. Compare users of Ax in Domain user and find that which user not present in domain if found the details then take further action. You can create those users in domain to resolve this error or you can remove users in Ax which are not available in domain.

Setup Source Version Control in Microsoft Dynamics AX 2012

1.First you need to open AOT and go to Version control parameter As Shown in below screen. 2.Then go to general table of Version control parameter form then select required parameters like Version control status,Version control system,repository folder etc 3. After that go to team foundation server tab in above screen and specify the url. 4.Then go to url then you can see Team room and specify further option in that url in browser.

Menus Name for Ax 4.0

I am sharing here Menus name for Ax 4.0 standard. We know this version is outdated but when we started to search for some information on Ax 4.0 then did not get even lot of searching so I am sharing here to get it easily. Menu Name General ledger Bank CRM Accounts receivable Accounts payable Inventory management Master planning Production Human Resources Project Basic Administration