You need to sign in to do that
Don't have an account?
Campaign Member Mass Task Creator 1.1
Hi,
I have installed the Campaign Member Mass Task Creator 1.1 app from the AppExchange and the functionality works well apart from when using the filter criteria, to filter the returned results.
We only want to filter on Member Status (i.e. Sent / Responded) and Type (Lead / Contact or Both), however within the Apex Code this is using other criteria e.g. Zip, Post Code and therefore returning inaccurate results.
Does anyone know how I can disable this or amend the code so it only searches purely based on whether this is a lead, contact (or both), and the member status??
Many thanks in advance.
Not knowing what the business requirements for this are, I think you may be able to accomplish this by using campaign member workflow rules and avoid the maintenance required with apex code. If you need to access contact/lead fields that are not currently in the campaign member object you can always create a custom campaign member formula field that returns those values.
Salesforce.com usually recommends we use their built in functionality first before writing apex.
Basically within the Apex Class "CampaignMemberFollowUpController", it uses filter criteria to support campaigns where there are over 1000 campaign members.
The only criteria that we want to use is the type (I.e. Lead, Contact or Both) and the member status (i.e. Sent, Responded etc). However, when we currently use the filter, this brings back incomplete results as it evaluates lead/contact fields such as Zip, Employees etc and we do not always have these fields populated because at this stage they may be unknown.
Therefore, what I want the application to do is only filter on 'Type' and 'Member Status'. Is this possible and how would I achieve this...?
Thanks in advance