换个角度看Salesforce之基础配置学习笔记(二)

1. 登录后无法使用Developer Console?

    先找到当前登录用户的Profie,然后勾选Profile中的View All Data(Modify All Data)即可;

2. PersonAccount是一个relationship

    A. SFDC中所有的对象都存放在一张表中,建表先建RecordType(RecordType专门有一张表来单独存放);

    B. 在PersonAccount创建后,相对应的Contact记录也会被自动创建;

    C. 把BusinessAccount修改为PersonAccount的过程中,不能指定其他字段的值;

3. 对于时区的设置,主要有两个地方:

    A. 个人设置:

 

B. Company 设置:

4. Visual Force page上如何获取Salesforce的系统时间:

<apex:page >
{!YEAR(TODAY())}
</apex:page>
View Code

5. 关于Salesforce中时区的说明:

    对于获取系统时间来说,修改时区对当前系统时间的获取并无影响;

    对于标准对象自带的时间字段来说,???

    对于自定义的时间字段来说,???

6. Roll-up summary field与Formula Field的区别:

    Roll-up summary field 建立在Master-Detail关系的Master表之上。而Formula Field建立在单表之上,通过在字段上建立公式的方式进行统一的处理;

7. 关于LastModifiedDate和SystemModStamp的区别:

    

     更多详细说明请参见该链接

8. Field Dependency:

    Both Standard Field and Dependent Field can be a Controlling Field.but only Custom Fields can be Dependent Field. But Checkbox fields can be controlling fields but not dependent fields.

    

9. How to check salesforce version:

    

10. How to enable Security Token:

      

 11. Salesforce cannot show the relationship between two tables in Schema Builder:

       

猜你喜欢

转载自www.cnblogs.com/sccd/p/8320567.html