GUMU™ Salesforce integration with Sage 100 (MAS 90/200) ERP | Greytrix

If you are leveraging Salesforce.com as your front end solution and Sage 100 ERP for financials, extend your investments with this easy to use and install, real time, bi-directional integration using GUMU™ GUMU™ for Salesforce – Sage 100 Integration is designed to provide businesses a seamless integration using existing Salesforce.com and Sage 100 ERP business process… Read More »

Adding Google Map to an address in Salesforce

It is possible to add a google map to any Salesforce object. The map can be used to graphically display the address of a particular record. Let’s say we want to display address in our custom object. Suppose our custom object has the fields Street, City, Zip, State, and Country. We will need to add… Read More »

Get key prefix of an object using Apex

Every record in Salesforce has an ID which is used to uniquely identify the record. Each ID value is globally unique. The first three digits represent the object type. For example, the Account object uses the 001 prefix; the Note object uses the 002 prefix, Contact uses 003, Users 005, Opportunity 006 etc. We can… Read More »

Delete apex class or trigger in Salesforce Production Org

It is not possible to directly delete an Apex class or trigger after it has been deployed to production. A quick workaround to delete or disable Apex Class/Trigger is by using eclipse and Force.com IDE. Here are the steps – Download Force.com IDE. Connect to the salesforce production org. Download the apex class/trigger. Open the… Read More »

Quick way to find out the release of Salesforce Instance

In our last blog post, “Quick way to find edition of Salesforce” we had described how we could quickly find the edition of the Salesforce instance. In this post, we would be describing how a user can quickly find the release of the Salesforce instance. As you might know, Salesforce provides three product releases every… Read More »

Invoke Future Methods through Apex Trigger for web service callout

While developing applications in force.com, sometimes we need to consume external web service in apex trigger. But, callouts cannot be made from apex triggers as that restricts database transaction until the callout is completed and the time limit for this is up to 120 seconds. You can find other callout limits here. The only way… Read More »

DateTime field and Time Zone Settings in Salesforce

Recently, for one of our integration programs we were trying to pass data from our datetime field to the Salesforce datetime field.  We were passing Date as “2014-01-02 00 00 000” but while viewing the same record in the Salesforce User Interface it was displaying the date as “2014-01-01 8 PM”. This posed a big… Read More »