Hi,
I've got a scenario i'm trying to solve with the interfaces...
To give you some background information: i'm working a a project which involves taking care of incoming documents: tag them with info like sender, assign them to the correct project and type of document (bill or letter), amount to pay, etc
I created a table called "Document", a table called "Sender" and a table called "Project".
- The document table has a column "Sender", which refers to the linked table "Sender"
- The document table also has a column "Project", which refers to the linked table "Project"
I created an interface which has a record view on the document table, which filters all "untagged" documents.
When you click on a document from the record view... fill in the sender and the project... one should see a list of recent documents that have the same sender and project... in order to detect potential doubles (=same document sent twice). Is this doable with the current interface?
So in short: I select a document, i identify "Sender B" and "Project 12"...
I expect to see on the same page... ideally all other documents that are from "Sender B" and "Project 12"... worst case only a list from "Project 12" are shown.