Continue reading “Enable More Than 20 Fields For Field History Tracking.”
Hide Search Box And Recent Items In Community Pages.
box and Recent Items are sometimes giving access to some unwanted records. Here is a work around to hide then.
Continue reading “Hide Search Box And Recent Items In Community Pages.”
VLOOKUP Function In Salesforce
Syntax:
VLOOKUP(field_to_return, field_on_lookup_object, lookup_value)
Create a validation rule and pass parameters, field_to_return, field_on_lookup_object & lookup_value.
Field_to_return : The field that contains the value you want returned
Field_on_lookup_object : The field on the related object that contains the value want to match
Lookup_value : The value want to match.
Continue reading “VLOOKUP Function In Salesforce”
Work Around For TEMPLATE NOT FOUND Issue In Salesforce
TEMPLATE NOT FOUND issue due to non access of field in email Templates. Salesforce is saying that Email Template is using standard controller even for Visualforce templates using without sharing classes. So you can’t send email through template if user don’t have access of fields used in template!
Continue reading “Work Around For TEMPLATE NOT FOUND Issue In Salesforce”
Location-Based SOQL Queries
The DISTANCE function is now supported with location-based queries. You can calculate the distance between two location values, such as between a warehouse and a store.
Continue reading “Location-Based SOQL Queries”
Working with Apex Trigger in salesforce
Trigger is piece of code that is executes before and after a record is Inserted / Updated / Deleted from the force.com database.
A trigger is Apex code that executes before or after the following types of actions:
Location-Based SOQL Queries
The DISTANCE function is now supported with location-based queries. You can calculate the distance between two location values, such as between a warehouse and a store.
DISTANCE() now works with location and address fields. You can retrieve a specific distance (say, of a store from a contact’s location) and display it to the user.
Continue reading “Location-Based SOQL Queries”