码家

Web Platform, Cloud and Mobile Application Development

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  234 随笔 :: 426 文章 :: 44 评论 :: 145万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

随笔分类 -  | Salesforce |

1 2 3 下一页

摘要:Looking for a bit of creative inspiration, perhaps? Then get assistance with your app or project by reserving a 1:1 design / UX consultation. Our web and visual design experts will help you find transformative solutions. Sign up now, spots are limited! 阅读全文
posted @ 2013-11-24 10:13 海山 阅读(658) 评论(0) 推荐(0) 编辑

摘要:Need help architecting or coding your application? You can get technical help with building applications in the cloud by reserving a private 1:1 consultation with a Force.com, Heroku, or Database.com expert. Be sure to make an appointment… Spots are limited! 阅读全文
posted @ 2013-11-24 10:11 海山 阅读(407) 评论(0) 推荐(0) 编辑

摘要:Kick-off Dreamforce at the AppExchange Partner Keynote and hear from industry experts about the trends they see in the market and the enormous opportunity around enterprise apps and mobile. Plus, get the latest updates on the Salesforce platform and gather strategic insights from our program leaders 阅读全文
posted @ 2013-11-24 09:52 海山 阅读(586) 评论(0) 推荐(0) 编辑

摘要:Apex allows you to build just about any custom solution on the Force.com platform. But what are the common design patterns and associated best practices for Apex development, and how can you leverage these patterns and best practices to avoid reinventing the wheel? Join us to learn some common Force 阅读全文
posted @ 2013-11-24 09:41 海山 阅读(436) 评论(0) 推荐(0) 编辑

摘要:While developing your Visualforce pages you may need to be able to obtain the URL of certain actions, s-controls or your static resources.I found it personally a challenge since the documentation for "URLFOR" function is not included in "Visualforce Developer Guide" itself and in 阅读全文
posted @ 2013-11-08 18:19 海山 阅读(963) 评论(0) 推荐(0) 编辑

摘要: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 阅读全文
posted @ 2013-11-08 17:47 海山 阅读(818) 评论(0) 推荐(0) 编辑

摘要:http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_debugging_debug_log.htm 阅读全文
posted @ 2013-07-25 15:49 海山 阅读(193) 评论(0) 推荐(0) 编辑

摘要:http://www.forcetree.com/2011/12/insufficientaccessoncrossreferenceentit.html 阅读全文
posted @ 2013-07-25 15:48 海山 阅读(453) 评论(1) 推荐(0) 编辑

摘要:http://www.salesforce.com/us/developer/docs/pages/Content/pages_controller_sosc_list_views.htmhttp://boards.developerforce.com/t5/Visualforce-Development/List-views-and-StandardSet-List-Controller-question/td-p/192047 阅读全文
posted @ 2013-07-25 15:47 海山 阅读(213) 评论(0) 推荐(0) 编辑

摘要:http://forceprepare.com/http://forcecertified.com/certifications/certified-developer/http://blog.lopau.com/finally-passed-my-force-com-certified-developer-exam/http://www.proprofs.com/quiz-school/story.php?title=developer-examination-kvp-business-solutions 阅读全文
posted @ 2013-07-25 15:45 海山 阅读(220) 评论(1) 推荐(0) 编辑

摘要:we can use the username & password flow that's part of the oauth2 support.Hi all, I have arrived the solution to my problem. Actually, I was examining the sample given in the link http://wiki.developerforce.com/page/Getting_Started_with_the_Force.com_REST_API . Then implemented OAuth 2.0 Use 阅读全文
posted @ 2013-06-14 15:23 海山 阅读(1078) 评论(0) 推荐(0) 编辑

摘要: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 阅读全文
posted @ 2013-06-14 15:19 海山 阅读(1548) 评论(0) 推荐(0) 编辑

摘要:http://wiki.developerforce.com/page/DemoREST.javahttp://wiki.developerforce.com/page/Getting_Started_with_the_Force.com_REST_APIhttp://www.salesforce.com/us/developer/docs/api/Content/implementation_considerations.htmhttp://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_login.htm 阅读全文
posted @ 2013-06-14 15:18 海山 阅读(253) 评论(0) 推荐(0) 编辑

摘要: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 阅读全文
posted @ 2013-04-25 09:57 海山 阅读(1198) 评论(1) 推荐(0) 编辑

摘要:There was a issue with the SOQL query. The query was taking a longer time to execute and when it was crossing 120 seconds, it was giving time out error. i had to use some index fields in my query to narrow the query range. it worked for me.Some times due to queries it takes lot of time to execute.Tr 阅读全文
posted @ 2013-03-11 12:28 海山 阅读(558) 评论(0) 推荐(0) 编辑

摘要:I found the problem. The issue was the following: My batch process had a global variable which was keeping instances of lists of records that were created in each execution of the method "execute". Therefore I wasunnecessarilyaccumulating records in memory and that caused the error "B 阅读全文
posted @ 2012-12-07 16:03 海山 阅读(580) 评论(0) 推荐(0) 编辑

摘要:If you are trying to accomplish this task (getting a CSV file to download in IE8)using Salesforce.com(in which case your front-end is Visualforce and you can't set all of the headers, only some of them), here's what you need:<apex:pagecache="true"contentType="application/oc 阅读全文
posted @ 2012-12-05 16:17 海山 阅读(303) 评论(0) 推荐(0) 编辑

摘要:http://blogs.developerforce.com/developer-relations/2011/03/visualforce-rerender-and-internet-explorer-9.htmlVisualforce AJAX and Internet Explorer 9 Error (and Fixes) [UPDATED]ByJOSH BIRK|Published:MARCH 24, 2011UPDATE:An official patch has been released by the Visualforce team, so this should no l 阅读全文
posted @ 2012-12-05 16:12 海山 阅读(2485) 评论(0) 推荐(0) 编辑

摘要:When an administrator enables feed tracking, users see updates for objects and records they follow in theirChatterfeed. Many objects and fields are tracked by default, but administrators can further customize feed tracking to include or exclude specific objects and fields.Available in:Group,Professi 阅读全文
posted @ 2012-11-27 15:55 海山 阅读(551) 评论(0) 推荐(0) 编辑

摘要:Q.1)You can use Global Search when Chatter has been disabledA.TrueB.FalseQ.2)On an object you can select ____ fields to track for Chatter FeedA.10B.15C.20Q.3)Which data can be synced using the new Salesforce for Outlook?(Choose 2 answers)A.EventsB.Custom ObjectsC.LeadsD.ContactsQ.4)The Highlight Pan 阅读全文
posted @ 2012-11-27 15:54 海山 阅读(447) 评论(0) 推荐(0) 编辑

1 2 3 下一页
点击右上角即可分享
微信分享提示