|
What's a View?
A view is a list of values from a document which is bound to that document via a GUID property from that document. You can imagine a view as a 2 dimensional image of a multi dimensional document object usually created for a specific purpose.
For example if you have a invoice document one view would be a list of those invoices for the purpose of browsing them like:- { invoice GUID, date, invoice number, status, salesman name }
复制代码 Another view would be like below for the accounting department :- { invoice GUID, date, total sales amount, total sales discounts, salesman name, customer name }
复制代码 |
|