Li Jun
2022-04-19 2f183a6b0a83ec3f7d35375d5d25d200efc2a3e1
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?>
<ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>ShippingScheduleDateNeedGreatethantoday</fullName>
    <active>true</active>
    <description>预测发货日修改时要大于今日</description>
    <errorConditionFormula>ISCHANGED(Shipping_Scheduled_Date__c) &amp;&amp; 
NOT(ISBLANK(Shipping_Scheduled_Date__c)) &amp;&amp; 
Shipping_Scheduled_Date__c &lt;= TODAY()</errorConditionFormula>
    <errorDisplayField>Shipping_Scheduled_Date__c</errorDisplayField>
    <errorMessage>预测发货日修改时要大于今日</errorMessage>
</ValidationRule>