It seems to me the following situation would be ...common? But I cannot find an easy solution.
We have a primary custom object type like "patient_info", and a secondary object type like "patient_visit". For every object of type "patient_info", there are many (0+) objects of type "patient_visit".
Is there a way in Taskspace to design a user interface that allows for the following scenarios:
1. Search for a particular patient_info ---> ok, we know how to do that, with a search template.
2. Given a particular patient_info, open it ---> know how to do that too, using the "open" menu action, we have associated "open" with a form that we designed to display the data for modification.
3. Once that patient_info is open, how to add a new patient_visit ---> Don't Know How
4. Once that patient_info is open, how to find and display the patient_visits for that patient ---> Don't Know How
5. Once that patient_info is open, how to find and delete a particular patient_visit for that patient ---> Don't Know How
The challenge is to do this without resorting to writing custom code, but if that's the only way, we're all ears.
Thanks in advance.