Hi greenpoise, Based on that slice, you can do the following:
- detect if iscreate or isupdate (in which case you know the current 'row'). - use _filter_fields(form.vars) to extract 'fields' for each of the involved tables (base + linked). (for each involved table, base and linked, after form.accepts:) - if iscreate, then use (table).insert(**fields), as per the slice. - otherwise, if isupdate, then use row.update_record(**fields) for the base table. - and use row.(linkedfield).update_record(**fields) for each of the linked tables. Hope this helps. Carlos

