Microsoft Dynamics Ax Views
Views are used to make extraction of data easier. A view is the result of an inner join of two or more tables. Views are read only and support aggregated functions on the fetched data. In a relational database, data is divided into numerous tables to prevent redundant data and for better performance. But extracting data for reports becomes more complex as you will often have to fetch data from several tables, in such scenarios we can create a view consisting of fields from different tables which are joined. Example (1): Let’s create a view to sum customer transactions and print customer information. 1. Go to the node Views , right-click and select New View . Rename the view to "MyFirstview" using the property sheet. 2. Locate the node Metadata/Data Sources , right-click and select New Data Source . Go the property sheet for the new data source and pick the table CustTable using the property Table . ...