![](https://images.squarespace-cdn.com/content/v1/637dc346cd653e686a50c1f5/1709817585846-FWV8YFKS8HXK6RHAN5TY/Salesforce+Apps%2C+Web3%2C+Development%2C+and+Administration.png)
Salesforce. AI. Web3
Slides and recordings from Chennai Salesforce Platform Developer meetup–October !
Chennai October meetup went well yesterday with sessions on topics ranging from Apex, Heroku etc. I enjoyed delivering my session over Google hangout a lot, it for sure saved the traveling time and cost ac…
Overcoming Rollup Summary Limitations in Salesforce with LREngine
Learn how LREngine overcomes Salesforce rollup summary limitations for lookup relationships. This powerful Apex utility automates data aggregation, streamlines customizations, and enhances app development. Ideal for developers and admins aiming to boost efficiency and functionality in Salesforce.
Take aways from Salesforce Noida Developer Meetup !
Noida meetup was great opportunity to connect with force.com peers. We had good presentations and knowledge exchange, here is the briefing of those presentations…
Generating Base-64 SHA-1 Signature Header for Rackspace API in Apex
This post shares small code snippet to generate base-64 SHA1 Hash, which is typically used in passing as signature header to some APIs. We tested this snippet with Rackspace API Signature Header, which…
Upcoming Salesforce Dev events in India (July’12)
Yes, this is true Force.com team is coming to Noida and many other cities in India this July’12. We always saw force.com team doing lots of dev meetups and events all around the globe, India only got limi…
Salesforce summer’12 Sorting enhancements reviewed !
With force.com summer’12 release, I was very happy to see the ability to sort Non-primitive data types in apex with availability of List.sort() and Comparable fixture. Having native or system sorting sup…
Accessing Sobject Field Sets in Apex Code !
I recently came across a problem, where I need to query the fields to be shown via FieldSet via Apex Code (No Standard Controller Love). After struggling for a while with Apex docs, I googled for the same…
Fighting and Fixing the “MIXED_DML_OPERATION” Error!
You can easily run into this error if you are trying to perform DML on setup and non-setup objects in the same transaction. Non-Setup objects can be any one of the standard objects, like Account or any custom object.
Here are a few examples of the Setup Objects:
Tip: Using Decimal class with Strings in Apex
Today I came across an interesting problem that reminded me of my Java days. A piece of Apex code written by some other developer was broken, when I did my fixes.
Here is some background about the broken…
Force.com Developer Console Navigation Trick
I never thought that working in browser can be more fun than Eclipse IDE. But my thinking is changing these days, first http://jsfiddle.net/ became my favorite playground for any HTML/Javascript research…
Salesforce Email Services: Where is the "Delete" button?
Deletion of email services is interesting. One of my team members recently approached me, asking why the “DELETE” button is not coming on configured in email services.
Resolved: “Field is not writeable: Sobject__Share.RowCause”!
This post is about an issue that comes with Apex-managed sharing, i.e. System.SObjectException: Field is not writeable: Sobject__Share.RowCause. We faced this problem recently and tried searching…
Yet Another Apex Trigger Template!
I know Trigger templates are previously discussed also in great detail. We have excellent posts available by Steve Andersen(Gokubi) and Mike Leach on the same. Here is my small journey on Triggers…
Force.com ESAPI v0.5 & Death of Apex-CRUD-FLS-Validator API
To merge these Apex-CRUD-FLS-Validator APIs with Force.com ESAPI, I discussed with Yoel Gluck. Yoel maintains the Google Code project for ESAPI and is “Salesforce's Lead Product Security Engineer”. In our discussions about adding these new APIs to the Force.com ESAPI project, we devised a plan to merge the APIs…
Rich Visualforce Editor that finally supports Content Assist !
We all miss content assist support in Force.com IDE Visualforce editor. My previous attempt of using eclipse code templates was a patch to fill this gap. Good news now is, my colleague @AjayHada is creating a Visualforce editor, that will give decent code assistance support on…
Visualforce Code Templates/Snippets for Force.com IDE!
Force.com IDE is already doing a decent job on top of Eclipse. It provides a nice Visualforce editor with syntax highlighting and code indentation based on the standard Eclipse HTML Editor. I recently tried to create a couple of Visualforce code templates/snippets to quickly assist in creating the pages and was successful in that attempt. The rest of the post describes how.
JSON parsing in Apex, a developer’s nightmare :( Winter’12 release I badly need you !
Today I stumbled upon a requirement to parse JSON in Apex. I was happy about the fact that I know there is a cool open source library calledJSONObject, that will do all the heavy lifting of JSON parsing and another more cooler native JSON parser is lined up in coming winter'12 release…
Dependency Injection for ease in Testing Apex WebService Callouts!
Dear Apex developers, who are using HTTP Restful Classes know that testing the callouts is not allowed in Apex. People came up with their own smart ways to handle this restriction.
Apex inheritance – Extending managed package abstract/virtual classes & interfaces !
n my recent project, I came across a requirement to create a base class in a managed package with child extension packages would extend to add their value to it…