Category Archives: GUMU™ Salesforce

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 »

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 »

Set controller variable/properties from JavaScript

Sometimes we need to pass values to apex code or assign the controller properties in JavaScript. Here is the trick that we can use to set a value to an apex variable/properties from JavaScript code using <apex:inputTextarea>  tag in Visualforce Page. <apex:inputTextarea id=”setDataStringValue” value=”{!setDataStringValue}” styleClass=”exampleDataToSetVariable” style=”display:none;”/> We will set the value ‘data’ in JavaScript function… Read More »

Assign custom object permissions to Standard User in Salesforce

One of the key tasks of Salesforce administrator is to assign custom object permissions to the standard Users in Salesforce. One can simply assign a user with administrator rights and can avoid the trouble of assigning privileges to different user groups. However, this would mean providing users with unrestricted access, which could potentially lead to… Read More »