Any ideas?
Thank you!
1 respuesta
How about adding a Validation Rule on the CampaignMember object like this -
AND(
ISNEW(),
Campaign.Approved__c = FALSE
)
This will not allow them to
savethe CampaignMember by associating that with an un-approved(I am guessing this is identified by a field say Approved[Checkbox] on the Campaign object) Campaign.