Feline Flock Blog: cloud architecture/development and AI
-
jQuery Visual Cheat Sheet
Very useful! http://woorkup.com/wp-content/uploads/2011/05/jQuery-1.6-Visual-Cheat-Sheet.pdf
-
SalesForce integration with .Net
Darren Terrell has a series of very good articles about SalesForce and .Net integration: SalesForce integration with .net web services SOAP API How to make .net query/insert/upsert/update/delete SalesForce objects. SalesForce Integration with .net custom web services How to make .net consume a web service created in SalesForce. SalesForce Integration with .net callouts How to make…
-
Types of document storage in SalesForce
Types of document storage in SalesForce: Feature/ Type CRM Content Files tab Documents tab Notes and Attachments related list Google Docs tab Can associate with a record Yes, through content types/workspaces /lookup fields No No Yes, mandatory No File size limit ? 500 Mb/user 100 Mb/file 5 Mb/file 5 Mb/file, 10 Mb/email 1 Gb/file upgradeable…
-
Getting name of previous owner of account
1) Create a lookup field “Previous Owner” in Account as LookUp(User) 2) Create a trigger like this: trigger OnAccountOwnerChanged on Account (before update) { for( Account a : Trigger.new ) { Account AcctBeforeUpdate = Trigger.oldMap.get( a.Id ); if( AcctBeforeUpdate.OwnerId != a.OwnerId && ((String) a.OwnerId).startsWith( ‘005’ ) ) a.Previous_Owner__c = AcctBeforeUpdate.OwnerId; } } 3) Use the…
-
SalesForce blogs
<Tech> Germ Appirio Tech Blog AscendWorks | SF Consulting Ben Prozinski Button Click Admin Chris O Davies – IT Confessions of a Salesforce Addict CRMFYICRMFYI Dan’s .NET Blog Decoding Salesforce Developer Force Content developer.force.com Duckyforce Embracing the Cloud Force – Tips Force 201 – Force.com Development Force Architects: Delivered Innovation Force by Design Force Guru…
Got any recommendations?