Skip to main content
I'd like the Campaign to be approved before making available to new Campaign Members. The current Approval Process default "locks" the campaign but only in terms of field updates.

 

Any ideas?

 

Thank you!
1 个回答
  1. 2015年3月25日 15:33
    How about adding a Validation Rule

    on the CampaignMember object like this - 

    AND(

    ISNEW(),

    Campaign.Approved__c = FALSE

    )

    This will not allow them to

    save the 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.
0/9000