The warning you are mentioning is only due to the fact that no
relationship is defined between your tables in your database engine
(whether it is SQL Server, MySQL, etc.); so, unfortunately, uPlan
cannot guess which relationship does exist between the master table
and the "satellite" tables (even though column names are the same in
separate tables). You ***must*** help uPlan, by double-clicking the
User View name, and coding the relationship, thanks to an SQL query,
such as
select [satellitetable].[columns],[satellitetable].[column2]
from [satellitetable]
where [satellitetable].[mysatellitekey] = |->[mymasterkey]
BUT
As far as I know (XMPie gurus will stop me if I am wrong), the current
version of uCreate XM and uProduce (4.6.2) only allows you add
recipients (thanks to the Insert button in the uCreate XM toolbar in
Dreamweaver) to the ***main*** database (the one described in the
Schema "branch" in uPlan).
So, I am afraid that you cannot add both referers (say, in the master
table) and refered persons (say, in a satellite table).
When I need to add both referers and refered persons in the same
campaign, I try to store everybody in the ***same*** "master" table,
and add a particular column, to specify who was the referer of a
refered person; original people - who were not refered to by anybody -
have this column value empty. If needed, uPlan user views can further
help retrieve several people, who would have been refered to by the
same referer:
select [mytable].[name],[mytable].[email]
from [mytable]
where [mytable].[myreferer] = |->[myid]