Basically, I want to know how best to “pipeline data” from tables one table away in Servoy. Do I have to use unstored calcs in the Joinfile ?
This is the example situation:
table_Contacts
table_JoinFile
table_Address
table_Details (fax, phone etc)
On the Contacts form I want to show a tabpanel with info from table_Address and table_Details in one tabpanel window .
There is a join table (table_JoinFile) between table_Contacts and the other 2 (table_Address and table_Details)
So far this is how it seems to me:
In order to show this data in one tabpanel window in the Contacts form, I need to create unstored calculation fields in table_JoinFile which pull (via relationships) the relevant table_Address and table_Details data into table_JoinFile.
Then I have to pull this data (now table_JoinFile data) into the Contacts form (tabpanel window) from the JoinFile form by a relationship (a table_Contacts - table_Joinfile relation).
Is there a better way to pull this data from one table way or are unstored calcs and a relation (table_Contacts - table_JoinFile) the best way ?