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