Salesforce. AI. Web3
Salesforce Chrome Extension for analyzing Debug Logs
This video gives a quick peek of a chrome extension for viewing Salesforce debug logs. It’s using this open source log indentor for the same: https://github.com/codehutch…
Debugging S1 Lightning & Visualforce Apps via Chrome Remote Debugging
In this blog you will know about Debugging S1 Lightning & Visualforce Apps via Chrome Remote Debugging More on this one here: http://www.tgerm.com/2014/11/remote…
Auto Updating HTML5 Cache Manifest for Salesforce 1 / Visualforce
For well known performance reasons, client side caching of web resources like stylesheets, images and scripts is important. This becomes pretty important for those who are creating mobile/tablet Visualfor…
Testing SOAP Outbound Messages without failures
As suggested by Salesforce docs, one can use services like requestb.in or inspectb.in to test outbound messages. But these services are pretty generic so they just return 200 / OK response for any inbound…
Cancelling out of HTML5 browser validations !
This post is based on a short scary movie, I was working on a cool HTML-5 page
<apex:page .... docType="html-5.0"/>
But all the coolness disappeared when powers of CANCEL button are gone. The typical...
Salesforce MVP - Are you a good candidate ?
Since nominations for Winter'14 MVP are open, I got into discussions with many people regarding few repetitive points, like…
Salesforce Mobile Developer Week Meetup @Jaipur
It was a great last few weeks of Apr'13, full of excitement, discussions and enthusiasm about "Salesforce mobile dev week". Heat and excitement about salesforce + mobile events during this week was almost…
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…
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…