Posts

Showing posts from October, 2016

How to select multiple value from lookup in ax 2012

Image
Hi, Today we will see how to select multiple value from dropdown lookup. In this case we will select multiple customer account num. Step 1: Create a query Step 2 : In this example I have created a table  but you can use existing one. I have added one field account number. Step 3 : As I have created a new table , so I have to create new form too. Again you can continue with existing form. Step 4 : Now Add below method in form methods 1. public class FormRun extends ObjectRun { SysLookupMultiSelectCtrl msCtrl; } ------------------------------------------------------------------------------------------------------------- 2. public void init() { Query query = new Query(); super (); msCtrl = SysLookupMultiSelectCtrl::construct(element, S3_AccountTable_AccountNum, querystr (CustTablelookup)); } -----------------------------------------------------------------------------------------------------------...