buli
2023-06-05 e9e1806b0f4b5bae1fc36204ccc5d6fdad52d66f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>Account_ID_isMatch__c</fullName>
    <externalId>false</externalId>
    <formula>/* 作成中と申請中のみチェックする */
/* IF(OR(Text(Daily_Report__r.Status__c) = &quot;非承認&quot;, Text(Daily_Report__r.Status__c) = &quot;承認&quot;), &quot;5&quot;,*/
IF(Free_Input__c,
/* 手動 */
  IF(IsBlank(Account_ID__c) &amp;&amp; IsBlank(whatid__c), &quot;1&quot;, &quot;3&quot;),
/* Notesなど連携 */
  IF(Not(IsScheduled__c) &amp;&amp; Not(IsBlank(Location__c)) &amp;&amp; IsBlank(Account_ID__c) &amp;&amp; IsBlank(whatid__c), &quot;1&quot;,
/* Suggest */
    IF(Account_ID__r.Name == Location__c, &quot;1&quot;, 
    IF(And(IsBlank(Account_ID__c), IsBlank(Location__c)), &quot;1&quot;, 
    IF(And(IsBlank(Account_ID__c), IsBlank(whatid__c)), &quot;2&quot;, 
    IF(Account_ID__c &lt;&gt; Left(whatid__c, 15), &quot;4&quot;, 
      &quot;0&quot;
    ))))
  )
)</formula>
    <label>Account_ID_isMatch</label>
    <required>false</required>
    <trackHistory>false</trackHistory>
    <trackTrending>false</trackTrending>
    <type>Text</type>
    <unique>false</unique>
</CustomField>