1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Complaint_Aware_Date__c</fullName>
| <externalId>false</externalId>
| <formula>IF(
| ISBLANK(PAE_Repair__c),
| IF(ISBLANK(PAE_QIS__c),
| null,
| PAE_QIS__r.Trable_occur_daY_collect__c
| ),
| PAE_Repair__r.DateReceiptQuestions__c
| )</formula>
| <label>投诉知悉日</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <trackTrending>false</trackTrending>
| <type>Date</type>
| </CustomField>
|
|