1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>When_NFM103_Required</fullName> 
 |      <active>true</active> 
 |      <description>NFM103送信時チェック</description> 
 |      <errorConditionFormula>AND(Text(Status__c)='1.受理完毕', 
 |    OR( 
 |      ISNEW(), 
 |      ISCHANGED(Status__c) 
 |    ), 
 |    /* NFM103必填 */ 
 |    OR( 
 |      ISBLANK(Incharge_Staff__c) 
 |    ) 
 |  )</errorConditionFormula> 
 |      <errorMessage>上传SAP时错误,[修理委托者]必须填写。</errorMessage> 
 |  </ValidationRule> 
 |  
  |