How do get the Recently Viewed items using Soql Apex Class. As per the new Summer ’13 Release salesforce introduced the new Standard Object called RecentlyViewed, so using that we can …
Salesforce.com
- APEXSALESFORCESalesforce CustomizationSOQL
-
Best Video about Apex Pattern and best practices Includes the following items: – StandardSetController & Standard Controller, Extension, Custom Controller – Context overload pattern – Apex Batch Jobs & Limitaion
- APEXMobileSALESFORCEVisual ForceVisualforce
How to redirect the visualforce page based on the mobile user or browser user in salesforce
How to redirect the visualforce page based on the mobile user or browser user in salesforce its possible to redirect the visualforce page either mobile page view or normal browser …
-
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’); …
-
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 …
-
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 …