• 换个角度看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:

           

  • 相关阅读:
    c#中==和equals的比较
    原型指向改变如何添加方法和访问
    把随机数对象暴露给window成为全局变量
    内置对象Array的原型对象中添加方法
    构造函数可以实例化对象
    原型
    无刷新评论
    大量字符串拼接案例
    元素隐藏占位与不占位
    导航栏切换效果案例
  • 原文地址:https://www.cnblogs.com/sccd/p/8320567.html
Copyright © 2020-2023  润新知