Selecting items from different form and display in salesline form
To add new button in salestable form-> Linesview -> to show all related items based on salestable itemtype. And selecting items in other form and need to display in salesline: 1. Create new form(INC_InventItemsdetails) by taking InventTable datasource and adding Display menuitem (Inventitemdetailsdisplay). 2. Add menuitembutton in salesline, provide display menuitem(Inventitemdetailsdisplay). 3. In Form = INC_InventTabledetails -> Form ->Init() public void init() { SalesTable salesTable; super(); salesTable = element.args().record(); I InventTable_ds.query().dataSourceTable(Tablenum(InventTable)).addRange(fieldNum(InventTable,I NC_ItemType)).value(SysQuery::value(salesTable.INC_ItemType)); } 4. Taking co...