Skip to main content

Posts

Validate Ledger Journal By Code in MSD Axapta

To Validate Ledger Journal By Code in Axapta You can try following code. LedgerJournalCheckpost _ledgerJournalCheckpost; LedgerJournalTable _LedgerJournalTable; ; _LedgerJournalTable=LedgerJournalTable::find('004458/JV); _LedgerJournalCheckPost =LedgerJournalCheckPost::newLedgerJournalTable (_LedgerJournalTable,NoYes::No); _LedgerJournalCheckPost.run(); Same code you can use for Journal Posting. You need to change only following line. (_LedgerJournalTable,NoYes::Yes);

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.