Spring ’13 Force.com Platform Release Setting ID Fields for Updates Starting with Apex code saved using Salesforce.com API version 27.0, the Id field is now writeable on sObject instances for all sObject types—standard objects, custom objects, and generic sObjects—for update operations. The insert operation doesn’t support setting Id fields on sObjects. This change enables you to update existing records that correspond to sObject instances you already have, such as sObjects you obtained from deserializing JSON input. To do so, set the Id field on the sObjects to IDs of existing records in the database and call update. This call updates the corresponding records with all the other fields that are set on the sObjects.
通过外部ID项目来实现LOOKUP项目的ID自动设定
Account refAcct = new Account(externalId__c = ‘12345’);
Contact c = new Contact(Account = refAcct, LastName = ‘Kay’);
insert c;
Coll Table Grid By Javascript
http://datatables.net/examples/
Application Free Icon
http://www.small-icons.com/packs/24×24-free-application-icons.htm
Chatter Apex Help
http://wiki.developerforce.com/page/Chatter_Code_Recipes
//Adding a Text post
FeedItem post = new FeedItem();
post.ParentId = oId; //eg. Opportunity id, custom object id..
post.Body = ‘Enter post text here’;
insert post;
//Adding a Link post
FeedItem post = new FeedItem();
post.ParentId = oId; //eg. Opportunity id, custom object id..
post.Body = ‘Enter post text here’;
post.LinkUrl = ‘http://www.someurl.com’;
insert post;
//Adding a Content post
FeedItem post = new FeedItem();
post.ParentId = oId; //eg. Opportunity id, custom object id..
post.Body = ‘Enter post text here’;
post.ContentData = base64EncodedFileData;
post.ContentFileName = ‘sample.pdf’;
insert post;
Java Html Parse
http://htmlparser.sourceforge.net/todo.html
kendoui salesforce remoteAction
JS + APEX
salesforce developer eclipse plugin
http://www.multimodus.hr/aels-install.html
Apex Batch
http://blogs.developerforce.com/engineering/2013/02/force-com-batch-apex-and-large-data-volumes.html