Accessing Master Fields

Steve K

New member
I am trying to filter a lookup on a detail table using a field from the master form. Is there anyway to access the master form record when inserting / updating the detail form.
 

DAF ID3000

New member
Hi.
I achieved this kind of thing successfully by storing all needed fields in public vars ($_PUBLIC array) from a custom_startup_function (after checking $_GET vars are set) and using these PHP vars in the WHERE part of my SELECT_SINGLE field to filter results.
Don't forget dadabik_var tags before and after public var in your WHERE clause...
 
Top