Skip to main content

AX 2012 and Microsoft Lync / Microsoft office Communicator


Hi folks...........

AX 2012 is simply powerful.........Microsoft Lync & Microsoft office
Communicator have been integrated
with AX 2012 and its pretty simple to do it............

But the Pre-requisites are AX 2012 client should be installed on 
                               your machine and you have to be logged into 
                               Microsoft Lync / Microsoft office Communicator.
 Open Customer Details form
  ( Accounts Receivable - > Common - >Customer -> All Customers)
  1. Click on New Customer button on the top of the form.
  2. Set the record type to 'Person' and fill other mandatory fields .
  3. and click on Save then close the form.


4.  Double Click the newly created customer record  on the 
                     Customer master form.
5.  Go to Contact Information - > More Options -> Advanced


6. Click on 'Add' to create new contact information 
of customer and fill the e-mail address(Should be accessible 
through OC/Lync) and mark the option 'Instant messenger sign-in'.


7. Now we can notice that the Status symbol is displayed 
against the customer Id and some other OC/Lync options 
like Add to Communicator contacts (This option appears if it 
hasn't been added before),Send an Instant Message, 
Send an E-mail Message, Call, Share etc.,


I hope this will be a useful tool and could help in AX.


happy Daxing......!

Comments

Popular posts from this blog

Using File path on a form getting Error in Axapta

Hi Folks, After a long time am coming  back to posting few new things here for AX Developer... When we want to select the file path in form level. Normally what we will do create one EDT and extends with filepath (EDT), but that time when you are trying to select the path we will get error like stack-trace/Error message .Don’t worry there is no problem with your ax application. Simple we need to provide the method to the form like filepathLookUpTitle (). Below method we need to add it into form level methods, i.e. str filePathLookupTitle() {     return "Select document folder"; } Thanks Happy Daxing....

How to add Filter functionality to Display method in dynamics AXAPTA

Hi Friends, Normally filters will work only in table fields but we can't do filters to display method. This below code will work for filters to display method also. Step 1: Go to the form design right click on particular control properties Auto Declaration No to Yes. Step 2: Override the context() method on the display method  . public void context() {     int             selectedMenu;     formrun         fr;     Args            ag;     Name            strtext;     querybuilddataSource qb1;     queryrun    qr;     query       q;     PopupMenu menu = new PopupMenu(element.hWnd());     int a = menu.insertItem('Filter By Field');     int b = menu.insertItem('Filter By Selection');     i...

Split string useing List in AX2009

static void Job277(Args _args) {     List _list = new List(Types::String);     Container packedList;     ListIterator iterator;     str cade = "Jhon*,smt*,and*,caro*";     ;     _list = Global::strSplit(cade,",");     iterator = new ListIterator(_list);     while(iterator.more())     {         packedList += iterator.value();         iterator.next();     }     info(conpeek(packedList,2));     info(strfmt("%1",conlen(packedList)));   }