LoginSignup
1
0

More than 1 year has passed since last update.

検証ルールの例外

Last updated at Posted at 2022-03-22

指定された段階で製品ラインアイテムをOppに追加できないことです。[確率]フィールドを更新する必要があるというエラーが表示されますが、ラインアイテムを追加しようとするとこれは不可能です。

image.png

確率フィールドが無い。
Validation rule exception

ISCHANGED( StageName ), を入れてこの画面以外だったらというルールに変更している。思い付かんかった。

回答

AND( 
ISCHANGED( StageName ), 
OR( 
ISPICKVAL(StageName, 'Proposed and Quoted'), 
ISPICKVAL(StageName, 'Design Review'), 
ISPICKVAL(StageName, 'Customer Evaluation'), 
ISPICKVAL(StageName, 'Shortlist'), 
ISPICKVAL(StageName, 'Negotiation') 
), 
OR(
$Profile.Name = "Customer Relationship Manager/Network Services", 
$Profile.Name = "New Business Sales", 
$Profile.Name = "Sales", 
$Profile.Name = "Sales Manager"
), 
NOT(ISCHANGED(Probability__c ))
)

元の式

AND( 
OR( 
ISPICKVAL(StageName, 'Proposed and Quoted'), 
ISPICKVAL(StageName, 'Design Review'), 
ISPICKVAL(StageName, 'Customer Evaluation'), 
ISPICKVAL(StageName, 'Shortlist'), 
ISPICKVAL(StageName, 'Negotiation') 
), 
OR(
$Profile.Name = "Customer Relationship Manager/Network Services", 
$Profile.Name = "New Business Sales", 
$Profile.Name = "Sales", 
$Profile.Name = "Sales Manager"
), 
NOT(ISCHANGED(Probability__c ))
)

類似の例題

別の例題

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0