Create a sObject dynamically

The following code provides a general example of how to create a sObject dynamically in apex. Usage This kind of function will be useful in creating general class.

read more

Salesforce Triggers and Order of Execution

Triggers and Order of Execution The following is copy from [Triggers and Order of Execution] for memo Triggers and Order of Execution When you save a record with an insert, update, or upsert statement, Salesforce performs the following events in order. ※Before Salesforce executes these events on the server, the browser runs JavaScript validation if […]

read more

Salesforce Apex Zip Attachments With JSZip

Sometimes we need to zip Attachments or PDFs and download it at once in Salesforce development. As we know, Apex does not support Zip. it is conceivable that Zip files with other service such as Heroku or AWS, But in fact we can do this without any External Service, just Salesforce and JavaScript. This post […]

read more

Setup an awesome Salesforce developer environment with Sublime Text 3

Why Sublime Text 3 ? I’ve been working with Force.com for about 2 years, and always using Eclipse+Force.com IDE(See here, Eclipse Force.com IDE Installation)as my development environment. I don’t think it is really difficult to use, but it could be more friendly. For example: 1. It doesn’t support APEX and VF assist ※Seriously?! This looks […]

read more