HI,
I have been trying to fix a problem which is due to incompatibility between a customized report New contribution and ft_get_address sql function. This function has changed in v12 and has a new parameter @allow_multiple_contact_points. I have changed the report setup to accomodate the new parameter: List Filter Acts Upon
But still I am getting error related to ft_get_address:
An insufficient number of arguments were supplied for the procedure or function ft_get_address
Does anyone where can we see this function is being called from and fix the problem.
Regards,
Renu.
Unknown said: Does anyone where can we see this function is being called from and fix the problem.
I see that I misread before my reply above, sadly. A hazard on busy days. When I want to find strings in sprocs, though, I usually use:
SELECT distinct object_name(id)
FROM syscomments
WHERE text LIKE '%FT_GET_ADDRESS]%'
order by object_name(id)