How to determine your org type via apex code
Sometimes we want to use different values among production and sandboxes, one typical scenario is that we'd better use test endpoints instead of production endpoints because »
Sometimes we want to use different values among production and sandboxes, one typical scenario is that we'd better use test endpoints instead of production endpoints because »
The close case button is very useful and handy when we want to close a case. We don't need to provide much information to close a »
Lightning Out is a technology where one can take Lightning components built on the Force.com platform to the external applications like Sharepoint, SAP, Node apps »
在 Salesforce 中 Tasks 是一个强大的工具,可以帮助你跟踪你的工作并关闭交易。在 Salesforce 的 CRM 对象中扮演着重要的角色,可以将 Task 与 Opportunity、Lead、Account、以及 Contact 关联,并且在这些对象上管理相应的 Tasks。在一个 Automate Process 中, »
对于刚进入 Salesforce 开发人员来讲,他们会遇到这样一个问题,就是"怎样把一个参数从 Visualforce Page 传递到 Controller 中?"。 例如,下面这个代码,在这个页面上根据一个 Account 最多能显示10条 Contact 记录。 <apex:page standardController="Account" extensions="AccountController"> »
Web-to-Lead 是 Salesforce 一个很重要的特型,但也很容易被人忽视。Web-to-Lead 提供了一个从外部网站很简单的创建一个 Lead 到 Salesforce 的方式。在 Salesforce 中利用 Web-to-Lead 功能可以生成一个简单的 Form 表单,之后可以把这个 Form 表单内嵌到我们的外部网页中。接下来我们看一下如何创建,发布和调试 Web-to-Lead。 创建 Web-to-Lead »
JavaScript Remoting 是什么? JavaScript Remoting 是一个可以用来做异步处理的工具,开发者可以用它从 Visualforce page 到 Apex controller 做 AJAX 请求。JavaScript remoting 允许做异步事件处理的时候,而不需要加载整个页面。 另外,使用 JavaScript remoting 还能帮助我们减轻 view state »
Salesforce 做为一个 CRM 系统,给客户发邮件肯定是必不可少的功能,Salesforce 提供了非常灵活的 Email Template 功能,来满足你的业务需求。如果你们公司的要求相对高一些的话,肯定希望给客户发一封图文并茂的 Email,这里给大家介绍如何在 Email Tempalte 中引用图片。 HTML (using Letterhead) Template HTML (using Letterhead) 模版可以使用已经定制好的头部和底部( »
首先我们来看一下 Case.Link 的描述,Case.Link 可以返回 Case 在 Salesforce 内部访问的 URL,无论这条记录是在 Sandbox 还是在 Production,它都可以返回正确的访问地址。 第一步:创建一个文本 Email Template, 并把 {!Case.Link} 加到这个 Email »
Visual Workflow 提供了一个可视化的操作界面,可以用它来收集、更新、编辑和创建 Salesforce 里的信息。另外,在与 Salesforce 进行数据交互时,在 Flow 中还可以执行一些逻辑。当你使用可视化工作流时, 您构建的应用程序可以指导用户一步步的完成复杂的流程。今天给大家介绍一下如何使用 Visual Workflow 创建一个可以提交 Lead 的表单。 首先我们需要进入 Flows 页面, »