Posts

Showing posts with the label Tiles #technical #AX #workspace #connectwithhari

Create a Tile in a D365FO Workspace with X++ - Microsoft Dynamics Finance and operations

Image
  Tiles : There are two ways through which we can create tile one by personalizing form and another through code. In this example   we’ll use code The diagram below  summarizes the operations we will perform to add a tile to a workspace Posted by : Hariharasudan Kandaswamy These are the steps we’ll do : Create an AOT Query object Create a simple list form to show the query results Create a menu item to call the form Create a tile to call the menu item Add the tile to a workspace Create an AOT Query object Create a project and add a query called “ DeliveredSalesOrdersQuery ” Add SalesTable as datasource in “ DeliveredSalesOrdersQuery ”. Set dynamic fields property to “Yes” Add range in it for showing sales orders whose status is delivered. Save the Query Create a simple list form to show the query results Add a  Form  object and call it “ DeliveredSalesOrderInquiry “ Add  DeliveredSalesOrdersQuery  as Form Data Source Apply  “Simple list”   pa...