Skip to main content
Jo Green 님이 #Sales And Marketing에 질문했습니다
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일 오후 3: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