> db.define_table('t_ab_recipient',
>     [snip]
>
change: 

>     Field('f_distribution_name', type='string',
>           label=T('Distribution Name')),
>
to:
        Field('f_distribution', db.t_ab_distribution,
            label=T('Distribution Name')),
 
Note, your code wouldn't be producing any errors on save (saving just saves 
the file -- it doesn't run or even check any of the code). If you're 
getting errors when merely trying to save the updated file, there's 
something else wrong (I'm not sure what).

Anthony

Reply via email to