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