Kategori: Uncategorized
-
Ax 2009: Master planlama satıcı sorunu
Master planlama da ticari sözleşmelerden ilgili satıcıyı planlı siparişlere getirmek istiyorsanız, m.p. parametrelerini kontrol ettikten sonra , satıcının para birimini de kontrol etseniz iyi olur. Çünkü sözleşmedeki para birimi ile satıcı tanımındaki para birimi farklı ise planlı siparişlere satıcı gelmiyor. Dikkat etmek gerek… Hasan Bilgin ETG Danışmanlık
-
Ax 2009: Rgb codes from my google docs
http://spreadsheets.google.com/ccc?key=0AgLuOWgcCIYydGp2MW92aW56Nm54M0ZSb0s5dkI1dkE&hl=en#gid=0
-
Ax 2009: AX2009 SecurityProfiler Tool
AX2009 da security ayarlarında süper bir çözüm… tüm dertlerinizi çözecek… http://blogs.msdn.com/b/emeadaxsupport/archive/2010/05/25/ax-2009-securityprofiler-tool.aspx
-
Ax 2009: Deleted alert records are shown in the Unified Worklist web part
When users delete alert records, the records continue to display in the unified worklist on the users Role Center page. When records in EventInbox are deleted, they are not always physically removed from the database. If the ”SendEmail” field is selected, then the records are soft deleted. In such a case the ”Deleted” field is…
-
Ax 2009: How to install Ax 2009 on local computer
http://www.4shared.com/video/DGzvJNO1/How_to_install__Ax_2009_on_loc.html
-
Ax 2009: Production Methods Description
Configure-To-Order (CTO) Configure-To-Order (CTO) is a method of manufacturing which allows you, or your customer, to select a base product and configure all the variable parameters associated with that product. Based on the configurable items on each quote or order, Configure-To-Order (CTO) systems typically generate the manufacturing routing and/or bill of materials based on features…
-
Ax 2009: How to import customers and vendors in Microsoft Dynamics AX 2009
Cust, Vend import Microsoft Çözümü için tıklayın… Bu biraz zor diyen arkadaşlar için, bu sevda bitmez diyenler için, hız görmek istiyorum diyenler için, MBS çözümünü benimsemeyenler için:) buyrun 1. In the Navigation Pane, click Administration>Periodic> Data export/import>Excel spreadsheets> Template Wizard. 2. In the Excel Template Wizard, follow the instructions to create a template for “VendTable”.…
-
Ax 2009: import contactperson table from excel with relation venttable and custtable
İlgili kişi tablosuna satıcı ve müşteri ile bağlantılı kayıt atarken, excel tanım gruplarında tablo kurulumu>dönüştürmeye aşağıdaki kodu yaz, derle,,, gerisini axaptaya bırak… ; contactPerson.PartyId = DirParty::createPartyFromCommon(contactPerson).PartyId; if (!contactPerson.OrgPartyId) { if (contactPerson.CustAccount) { contactPerson.OrgPartyId = CustTable::find(contactPerson.CustAccount).PartyId; } else if (contactPerson.VendAccount) { contactPerson.OrgPartyId = VendTable::find(contactPerson.VendAccount).PartyId; } } else { if (!contactPerson.CustAccount) { contactPerson.CustAccount = CustTable::findByPartyId(contactPerson.OrgPartyId).AccountNum; } if…