Skip to main content

Posts

Create and send alert to user in MSD Axapta by code

EventInbox is a table where alert message record stored. You can try following code to check the same using job in axapta. static void CreateAlertInAx(Args _args) { Eventinbox Alerbox; ; Alerbox.initValue(); Alerbox.ShowPopup = NoYes::Yes; Alerbox.Subject = "This is the Alert subject"; Alerbox.Message = "This is the Alert message"; Alerbox.AlertedFor = "This alert is just information testing"; Alerbox.SendEmail = false; Alerbox.UserId = curuserid(); Alerbox.TypeId = classnum(EventType); Alerbox.AlertTableId = tablenum(Address); Alerbox.AlertFieldId = fieldnum(Address, Name); Alerbox.TypeTrigger = EventTypeTrigger::FieldChanged; Alerbox.CompanyId = curext(); Alerbox.AlerboxId = EventAlerbox::nextEventId();; Alerbox.AlertCreatedDateTime = DateTimeUtil::getSystemDateTime(); Alerbox.insert(); }

List of Companies Working on MSD AX or Axapta in India and Abroad

Following is the List of Companies Working on AX or Axapta in India and Abroad.  S.No. Company Name Web Site Location 1 NDS Infotech www.ndsglobal.com Mumbai 2 Capgemini www.Capgemini.com Mumbai 3 KPIT Cummins www.kpitcummins.com Pune 4 INDUSA www.indusa.com Ahmedabad 5 TCS www.tcs.com Bangalore 6 HCL www.hcl.in Noida 7 GE www.ge.com Gurgaon 8 Infosys www.infosys.com Bangalore 9 Techura www.in.tectura.com Noida 10 CorporateServe www.corporateserve.com Gurgaon 11 Logica www.logica.com Bangalore 12 Zylog www.zylog.co.in Chennai 13 Accenture www.Accenture.com Bangalore 14 Wipro Infotech www.wipro.com Bangalore 15 Persistent www.persistent.co.in Pune 16 AgreeYa Solutions www.agreeya.com Noida 17 S3 infotech www.s3infotech.in Noida 18 Godrej infotech www.godrejinfotech.com Mumbai 19 SHRISHAIL www.shrishail.com Noida 20 Fujitsu www.fujitsu.com Gurgaon 21 LnT Infotech www.lntinfotech.com Mumbai 22 Microsoft www.microsoft.com Bangalore 23 Systems Advisers www.systemsa

Inventory closing error in MSD axapta 4.0 and 2009

If you are facing error during inventory closing or cancellation of recalculation then you need to refer below TechNet site: http://blogs.msdn.com/b/emeadaxsupport/archive/2009/06/15/error-executing-code-insufficient-memory-to-run-script.aspx If problem still exists then you need to select lesser period range.

ERP Software Comparison

This is good link to know ERP Software comparison (Micorosoft dynamics,Syspro,Infor,Plex,Epocor,made2manage,Sage,SAP,ECI,IFS,NetSuite ,Exact etc) http://www.top10erp.org/erp-software-comparison-discrete-manufacturing-mfgmode-127 ERP vendor Comparision list. http://www.tgiltd.com/erp-software-selection/erp-comparison-list-erp-companies.html ERP Product Comparison http://www.erpfocus.com/product-directory-164.html Microsoft ERP comparison http://www.top10erp.org/microsoft-erp-software-comparison-technology-137

Find Microsoft dynamics Axapta jobs

To Find Microsoft dynamics jobs in NAV,CRM,AX,GP and Other Microsoft ERP tool  you can visit following link. http://www.nigelfrank.com/en/dynamics_jobs/default You can find job by entering tools and location to get latest and old jobs which can help to make you future bright. Best of luck.

Error on Deploying Cubes using SQL Server Analysis Services Project Wizard For Ax

If you are facing following Error on Deploying Cubes using SQL Server Analysis Services Project Wizard. Solution:Do not select language in the wizard which will resolve this error.

SQL Reporting service Error during Reporting Extension Installation from Setup

If you are facing following Reporting service Error during Reporting Extension Installation from Ax 2009 setup. Then you need to try following. Check whether Is "SQL Server Reporting Services" running? Install SQLSP2. Do this it is working 100% 1. Open the registry and find the HKLM\SOFTWARE\Microsoft\Microsoft SQL Server key. 2. Right-click the HKLM\SOFTWARE\Microsoft\Microsoft SQL Server key and choose New > Key. 3. Name the key Reporting Services. 4. Right-click the Reporting Services key and choose New > String Value. 5. Name the string value Version. The Version string value will have a type of REG_SZ. 6. Double-click the Version string value and enter 9.00.3042.00 as the value data. Click OK.