Hi !
Please do it on some test instance ,
what i did for this is here
i added one array in
my custom modules is oss_Person
metadata/prospect_lists_prospectsMetaData.php
Code:
'prospect_lists_oss_person' => array (
'lhs_module' => 'ProspectLists',
'lhs_table' => 'prospect_lists',
'lhs_key' => 'id',
'rhs_module' => 'oss_Person',
'rhs_table' => 'oss_person',
'rhs_key' => 'id',
'relationship_type' => 'many-to-many',
'join_table' => 'prospect_lists_prospects',
'join_key_lhs' => 'prospect_list_id',
'join_key_rhs' => 'related_id',
'relationship_role_column'=>'related_type',
'relationship_role_column_value'=>'oss_Person',
)
and in modules/ProspectList/vardef.php
i added one array
Code:
'oss_person' =>
array (
'name' => 'oss_person',
'type' => 'link',
'relationship' => 'prospect_lists_oss_person',
'source'=>'non-db',
), repair relationship
Now you can check count at list view page is coming fine and , now you can check prospect_lists_prospects there will be entry
check it with campaign , then let me know the result ,
Bookmarks