众所周知,国内一般2C的公司会很出名,最近听说了一家很厉害的2B公司(实际是美国的公司),于是上网查了一下,就是Salesforce。Salesforce创建于1999年,作为全球最知名的CRM软件服务提供商,多年依然如此。
原创
2021-07-06 16:51:23
223阅读
要获取更多Jerry的原创文章,请关注公众号"汪子熙":
原创
2022-04-15 15:17:34
90阅读
for(Date dateToday = dateStart; dateToday <= dateEnd; dateToday.addDays(1)){ System.debug('Updating All Other Jobs Than Daily Ones : ' + dateToday); //dateToday = dateToday.addDays(1); }
转载
2012-11-14 10:13:00
206阅读
2评论
如果有涉及到时区会影响的地方,要格外小心对时间的处理
转载
2012-11-13 14:24:00
366阅读
2评论
1. map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe();map的key是 object api name比如 “Account”可以: gd.containsKey(“Account”) 去判断一个object里有没有那个field2.map<String, Schema.SObjectType> gd = Schema.getGlobalDescribe();Schema.SObjectType sot = gd.get(objApi);Schema.DescribeSObjectResul
转载
2012-11-12 15:24:00
172阅读
2评论
Quickstart: Creating Custom Screen Pops Using VisualforceThis is part of theDeveloping with Service & Support QuickstartsUse CaseThe time that agents spend clicking through Service & Support is often scrutinized closely. Companies want to enable their agents to be as productive as possible,
转载
2012-11-12 16:00:00
404阅读
2评论
Call External Web Service from Salesforce ApexSometimes, you may need to call an extenal web service which might have written on a serverside language like .net, php or java.Once you made your web service on the serverside or you can use a third party web service api.I will explain you this usingAut
转载
2013-04-25 09:57:00
244阅读
2评论
本系列文章系笔者在 Salesforce 开发过程中的些许总结与心得,旨在记录自己的成长,以及为对 Salesforce 感兴趣的小伙伴提供一些帮助,如有疏漏,还望多多包涵 ~ 云服务 云服务,也称云计算服务,是一种根据需求,通过网络获取计算资源的形态。这些计算资源被包装成为服务,提供给用户。而提供 ...
转载
2020-12-12 16:23:00
386阅读
2评论
![](https://oscimg.oschina.net/oscnet/up-0579d658dd498265c77cf3b094915e76717.JPEG)
转载
2021-05-11 22:06:14
164阅读
2评论
什么是Salesforce?Salesforce是SFDC (※Salesforcce.com公司的简称)提供的客户关系管理(CRM) 云软件服务。Salesforce.com的客户关系管理(CRM)服务被分成5个大类,包括:Sales Cloud [6] 、Service Cloud [7] 、D ...
转载
2021-07-12 18:33:00
1675阅读
public List<SelectOption> getAmounts() { List<SelectOption> options = new List<SelectOption>(); options.add(new SelectOption('1', '1')); options.add(new SelectOption('2', '2')); options.add(new SelectOption('3', '3')); options.add(new
转载
2012-11-19 11:04:00
194阅读
2评论
APex Apex是salesforce开发的云上语言,语法类似于JAVA.开发工具MetaForce IDE 触发器新建触发器,在新建触发器上,选择需要监听的对象。 trigger TestPosition on Position__c (before update){ //处理代码}参数可以为多个:(after insert,after...
原创
2021-07-14 16:55:33
375阅读
Use CaseIn Salesforce, when you click on the standard ‘New’ button on a Related List to create a new record on the child object from the record currently in context in a Detail Page, after you click ‘Save’ and save the new record, it returns you to the Detail Page for the newly created record by def
转载
2013-11-08 17:47:00
127阅读
2评论
An announcement made last week caught our attention because it's one of the most requested add-ons for Office 365 users. Microsoft and Salesforce have inked a deal that will bring a Salesforce app to
转载
精选
2014-06-10 14:27:38
613阅读
唉,最近天天被测试类搞得心态快炸了 ┭┮﹏┭┮ 接触过Salesforce 工作的应该知道,Salesforce 虽然一直说提倡无代码开发,尽量使用标准功能来实现需求,但是有时我们仍然不可避免的的会要去写一些代码. 使用标准功能的话,Salesforce会自己负责代码的质量; 对于自定义的一些功能的话,Salesforce为了确保我们的代码不会在生产中的任何情况下
转载
2021-03-02 13:10:26
965阅读
2评论
global class We
原创
2023-02-14 09:34:25
88阅读
This tutorial will show you how you can authenticate to Salesforce using RESTful services.Configure remote access in SalesforceThe first thing to do is to allow external applications to connect to Salesforce. External applications will be recognized by two values - client_id and client_secret. In or
转载
2013-06-14 15:19:00
154阅读
2评论
1.salesforce default dataTable:<apex:pageBlockTable value="{list}" var="item"> <apex:column value="{!item.field1}"/> <apex:column value="{!
原创
2014-08-24 10:25:38
642阅读
在云计算方面,Salesforce 可谓是业界的领袖,它不仅在产品方面比较成熟,而且在思维方面也是引领潮流的,特别是在SaaS 和PaaS 这两
原创
2023-05-16 00:38:20
193阅读
创建程序在设置中点击构建应用程序然后添加应用程序,然后会有下面的界面 创建对象 在搜索框中搜索:对象,即可看到自定义对象页面,点击新建自定义对象按照步骤走就可以。创建选项卡创建对象后,需要在插入该对象的数据,如果把对象放在选项卡上,那么这样便会跟快捷。有两种方法可以创建选项卡:第一种:在创建对象的时候,最后一个栏目上,勾选:在保存该自定义对象后启动“新自...
原创
2021-07-14 16:55:34
1639阅读