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
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>StartDate_F__c</fullName>
| <description>开始日期 生产日期 -> 资本化日期 -> 设备日期和移交日期最初里较小的</description>
| <externalId>false</externalId>
| <formula>IF(NOT(ISBLANK(ProductionDate__c)),
| ProductionDate__c,
| IF(NOT(ISBLANK(Asset_day__c)),
| Asset_day__c,
| IF(AND(NOT(ISBLANK(Asset_Year_Txt__c)),NOT(ISBLANK(Asset_Cutoff_Date__c))),
| IF(Asset_Year_Txt__c <= Asset_Cutoff_Date__c,
| Asset_Year_Txt__c,
| Asset_Cutoff_Date__c
| ),
| IF(NOT(ISBLANK(Asset_Year_Txt__c)),
| Asset_Year_Txt__c,
| Asset_Cutoff_Date__c
| )
| )
| )
| )</formula>
| <label>报表用-使用开始日</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Date</type>
| </CustomField>
|
|