how to check the page is loaded in mobile or browser using Apex Class its achievable with the help of “User-Agent” header properties like below: String userAgent = ApexPages.currentPage().getHeaders().get(‘User-Agent’); …
SALESFORCE
-
-
How to Enable Log a Call Button in Salesforce Activity History Page Require the Edit access permisson in the task object, so provide Edit Permission in Task Object to enable …
- APEXAPIIntegrationSALESFORCESoapWeb Service
Listing the issues while generating the apex class from WSDL Document in salesforce
Listing the issues while generating the apex class from WSDL Document in salesforce It’s difficult to connect to external webservices without the following basic features. 1) Salesforce doesn’t support the …
-
Below is the some of the Important API Documentation URL’s Salesforce: http://www.salesforce.com/us/developer/docs/api/ Setster: http://www.setster.com/developers Pin.net.au: https://pin.net.au/docs/api Get Response: http://dev.getresponse.com Desk.com: http://dev.desk.com
-
How to implement my web app (https) to Salesforce1 App Mobile Its possible using the below approach: 1) Create a new visualforce page with Available for Salesforce mobile apps checked …
-
Tabbed Accounts Visualforce Page is not working in Salesforce1 App http://wiki.developerforce.com/page/Tabbed_Accounts_in_30_seconds in my Salesforce1 App users see the default layout, not the Tabbed_Accounts VF page? Solution: “Available for Salesforce Mobile …
-
Use of Available for Salesforce Mobile apps flag in Visualforce Page Use Case:- newly created the visualforce page and its support in Both Platforms (Salesforce Users and Salesforce1 Classic Users …
-
something like this, assuming updating an account is what triggers your code above. global class Trades_CascadeAccountsBatchable implements Database.Batchable<sObject>, Database.Stateful { /*run this batch the first time with this Database.executeBatch(new Trades_CascadeAccountsBatchable(‘SELECT …
-
Salesforce Web-to-Lead form integration using PHP and cURL Using this method, we can achieve the following scenarios: 1) Security Advantage of this process is hiding your Salesforce organisation ID 2) …
-
Types of Email Templates in Salesforce Types of Email Templates and when to use them. Salesforce provides four types of email templates:- Text – All users can create or modify the …