I have three tables:
- companies (master)
- contacts (details of companies / master of inquiries)
- inquiries (details of contacts)
- companies-table (master) handles over to contacts-table (details) by "comp_id" (masterkey).
- contacts-table (<<details / master >>) handles over to inquiries-table by "con_id" (masterkey).
But I also need "comp_id" handled to inquiries-table on default when a record is added there. I have it in contacts-tabel since it is the masterkey from companies-table. How can I get it into inquiries from there?

is there a way to do that within PHPRunner without modding code in generated php-files?
thanks for any adwise in advance