摘要: public class SObjectSchema { public void testSchema(){ //获取SObject的token //1、先获取所有token,然后通过key获取需要的token //2、直接获取指定的sObject的token //1、通过获取全部描述信息,然后g... 阅读全文
posted @ 2017-02-23 18:11 香港胖仔 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 使用Schema类的describesSObjects方法获取描述sObject结果.使用此方法可以通过sObject类型名称描述一个或者多个sObject描述信息。 首先给大家看一下结果: 阅读全文
posted @ 2017-02-20 14:28 香港胖仔 阅读(343) 评论(0) 推荐(0) 编辑
摘要: public class TestApproval { public void submitAndProcessApprovalRequest() { // Insert an account Line_Item__c a = new Line_Item__c(); a.Name = 'Test_Line_Item_code_appr... 阅读全文
posted @ 2017-02-19 21:52 香港胖仔 阅读(230) 评论(0) 推荐(0) 编辑
摘要: Controller的代码 包装类的代码 最后实现的效果如下图所示 阅读全文
posted @ 2017-02-19 16:35 香港胖仔 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 下面是调用部分 输出的结果如下图所示 阅读全文
posted @ 2017-02-19 15:33 香港胖仔 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 最后的结果如下图所示 阅读全文
posted @ 2017-02-19 15:00 香港胖仔 阅读(273) 评论(0) 推荐(0) 编辑
摘要: String deletePrivelegeRoleSql = 'SELECT ROLEID__c, NAME__c, Id, PRIVELEGEID__r.ID, ROLEID__r.ID FROM PRIVILAGEROLE__c'; List privelegeRoles = Database.query(deletePrivelegeRoleSql); if(privelegeRoles... 阅读全文
posted @ 2017-02-17 16:08 香港胖仔 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 执行结果如下所示: 阅读全文
posted @ 2017-02-17 13:50 香港胖仔 阅读(257) 评论(0) 推荐(0) 编辑
摘要: test的结果如下图所示 阅读全文
posted @ 2017-02-16 23:47 香港胖仔 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 测试方法 阅读全文
posted @ 2017-02-16 23:23 香港胖仔 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 测试类 阅读全文
posted @ 2017-02-16 21:25 香港胖仔 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 批处理,往自己的邮箱发一封邮件,批处理采用异步的处理方式处理数据,最多可以处理5000万条数据global with sharing class MerchandiseBatch implements Database.Batchable,Database.Stateful{ Integer queryCount = 0; String myEmailAddress = 'wei... 阅读全文
posted @ 2017-02-16 21:02 香港胖仔 阅读(1623) 评论(0) 推荐(0) 编辑
摘要: 结果如下所示 阅读全文
posted @ 2017-02-16 17:12 香港胖仔 阅读(258) 评论(0) 推荐(0) 编辑
摘要: List类 List在这里就是一个类List lists = new String[]{'1','3'}; List list1 = new String[]{'5','4'}; lists.set(0,'a'); lists.add(0,'b'); lists.add('2'); lists.addAll(list1); for(String item : lists){ Syst... 阅读全文
posted @ 2017-02-16 17:02 香港胖仔 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 结果如下所示 结果如下所示 阅读全文
posted @ 2017-02-16 16:17 香港胖仔 阅读(709) 评论(0) 推荐(0) 编辑
摘要: String goodsName = 'abcd1123汉字显示';//测试文本 System.debug('简化后的字符串名称为:'+goodsName.abbreviate(5)); //返回简化字符串,参数1:最大长度;参数2:偏移量offset System.debug('简化并添加偏移量的字符串名称为:'+goodsName.abbreviate(5,2)); System.de... 阅读全文
posted @ 2017-02-10 15:41 香港胖仔 阅读(566) 评论(0) 推荐(0) 编辑
摘要: Double 阅读全文
posted @ 2017-02-09 17:25 香港胖仔 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 二、OPerator 结果如下所示 三、variables 结果如下所示 四、Feed 五、Interactive 结果如下所示 >>> import testInteractive[-2. -1.]>>> 六、fetch 结果如下所示 >>> import testFetch[21.0, 7.0] 阅读全文
posted @ 2017-02-01 13:27 香港胖仔 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: Load Data Using the Custom Object Import Wizard 1、 2、 3、 4、 5、 6、然后就导入成功了 阅读全文
posted @ 2017-01-19 17:26 香港胖仔 阅读(222) 评论(0) 推荐(0) 编辑
摘要: View the Schema 1、点击setup 2、在QuickFind and Search中输入Schema Builder 先点击clear all 去除所有现实的UML,然后选择Line_item,Invoice,和Merchandise,然后右边就出现了对应的UML图 表示一个Invo 阅读全文
posted @ 2017-01-19 17:18 香港胖仔 阅读(284) 评论(0) 推荐(0) 编辑