Re: [Axapta-Knowledge-Village] Synchronise Contacts

2008-03-31 Thread mudit mittal
If your business relation is converted to Customer , then contact person is automatically attached to both BR and customer... ge_burrell [EMAIL PROTECTED] wrote: Hello all If you have a customer that is running Accounts Receivable, that is wanting to start up on CRM..

Re: [Axapta-Knowledge-Village] create a VISIO file(Organization Chart) using X++

2007-12-20 Thread mudit mittal
Hi Jyothi You could use COM from X++ to communicate with Visio - Microsoft Visio 11.0 type library. I am not sure that one has api for organization chart , but definately you can find one from MS. By the way if you noticed in 4.0 we have reverse data engineer tool which creates a

Re: [Axapta-Knowledge-Village] sending mails from crm quotation

2007-07-04 Thread mudit mittal
Is it 3.0 or 4.0 ? If you can pls specify exact steps... pbercher [EMAIL PROTECTED] wrote: Hello i have a problem when sending mails from crm quotation / documents: If my outlook is closed i get the errormessage: Method 'createItem' in COM object of class 'outlook.application'

Re: [Axapta-Knowledge-Village] DocuRef

2007-04-26 Thread mudit mittal
It is a normal Ax form - DocuView. To show documents belonging to other entities you can just change the range logic in Form - docuview - Datasources - docuref -init [EMAIL PROTECTED] wrote: I was just wondering if it is possible to open the DocuView form with data from another table

Re: [Axapta-Knowledge-Village] Document Handling

2007-04-25 Thread mudit mittal
Yes you should be able to do that. smmDocument is just an enhanced UI for document handling ( targeted for CRM specific customers). Both the forms use same table at the back end. Activex control is smmDrop2 .., just make sure you copy all code on smmDocument form related to that .. Dimitri

Re: [Axapta-Knowledge-Village] Attention MUDIT: Dynamics Ax 4.0 certification exams

2007-03-20 Thread mudit mittal
Details should be here http://www.vue.com/servlet/vue.web2.core.Dispatcher?webApp=ExamListwebContext=CandidateSitecid=245 Nitesh Ranjan [EMAIL PROTECTED] wrote: Hi Mudit, I need information realted Dynamics Ax 4.0 Certification exams for development/ Progaramming. It

[Axapta-Knowledge-Village] Re: [development-axapta] Re: How to get microsoft outlook's contact's email address into Axapta?

2007-03-14 Thread mudit mittal
2007 at the moment. --- In development-axapta@yahoogroups.com, mudit mittal [EMAIL PROTECTED] wrote: Hi Abdul My first take on this one - Use outlook synchronization feature in Ax , you can synchronize Ol contacts , appointments and tasks to Ax (and vice-versa). So contact in ol

Re: [Axapta-Knowledge-Village] CRM Quotation printing as word template

2007-03-14 Thread mudit mittal
Hi Jay Line number is a real field , and in many cases you will have values like 1.00 1.25 1.50 2.00 So , portion after decimal is also significant. However, if you want you can modify them before it is written to word (or may be excel). I think the right place to

[Axapta-Knowledge-Village] Plotting graphs (from any table) in Ax without writting any code.

2007-03-14 Thread mudit mittal
Hi all Do you want to plot graphs (pie charts,bars,2d,3d,etc...) from any table inside Ax and you dont want to write code? What if you want to filter the data before it is displayed? (And you want end user to define it). Example - Analyze revenues from sales done in particular

Re: [Axapta-Knowledge-Village] MS Outlook synchronization not working frm CRM

2006-06-05 Thread mudit mittal
Hi Sherin You are getting this error because an object of smmInit is not present in cache. When u start Ax , Classes-Application-startupPost , creates an object of smmInit and adds it to the cache.In your case object is not added in the cache. Check - 1.Clear cache and restart Ax and try

RE: [Axapta-Knowledge-Village] e-mail problem (out look)

2006-06-05 Thread mudit mittal
Hi Per Just wana correct you. SysInetMail uses simple MAPI , The flag which you are talking about is #MAPI_DIALOG , that will not suppress the security prompt for Recipients OR Sending mail. If you use SysINetMail mail;;mail = new SysINetMail();

RE: [Axapta-Knowledge-Village] Filter option in Display method

2006-01-05 Thread mudit mittal
There are workarrounds for some situations. You can manually add find and filter options to the context menu.Datasource has a method - public void filter(fieldId _field, str _value){ super(_field, _value);}If there is one to one mapping for the display field to some table field ,