Replace new line, space, commas characters using Apex Class To Replace the New Line Using Apex Class: It depends on which character is used (that differs between operating systems). If …
APEX
-
- APEXSALESFORCETrigger
Automatically convert Lead to Account, Contact and Opportunity using Apex Trigger
Automatically convert Lead to Contact using Apex Trigger Requirement: Automatically convert Lead to Account, Contact and Opportunity using Apex Trigger if the Lead Status = Open For Example: Here we …
-
How do Query Queue Id, Name in Salesforce Apex? Queues are stored as a Group SObject: For Example: Group groupDetail = [SELECT Id, Name, DeveloperName, Email, Type FROM Group where …
- APEXSALESFORCESalesforce Customization
Iterating Map using for loop in Apex Class
by Sakthiby SakthiFor black friday uggs the cyber monday uggs careful http://www.exclusivesearch.com/ shopper, uggs Cyber Monday there uggs cyber monday 2015 are uggs Cyber Monday bargains uggs cyber monday deals on uggs …
- APEXSALESFORCEVisual ForceVisualforce
How to Get the Logged in User Profile Name in Apex Class and Visualforce Page
How to Get the Logged in User Profile Name in Apex Class and Visualforce Page Source: https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_userinfo.htm#apex_System_UserInfo_getProfileId getProfileId() Returns the context user’s profile ID. Id profileId=userinfo.getProfileId(); String profileName=[Select Id,Name from …
- APEXSALESFORCESalesforce ConfigurationSalesforce CustomizationTrigger
How to Choose to achive the Field Updates either using Workflow or Trigger
How to Choose to achive the Field Updates either using Workflow or Trigger: Best practise to always use a workflow whenever possible and only use triggers when you cannot accomplish …
- APEXSALESFORCESalesforce CustomizationSalesforce.com
How to add a hyperlink in the body of a feeditem using apex class?
How to add a hyperlink in the body of a feeditem using apex class? FeedItem in salesforce as its represents an entry in the feed, such as changes in a …
-
@Future Order of Execution in Salesforce if you call a @future method from trigger (before/after insert/update) and the @future method will create a different thread for its execution . Since …
- APEXException HandlingForce.comSALESFORCESalesforce CustomizationSalesforce.com
Salesforce System.CalloutException: Read timed out error
Salesforce System.CalloutException: Read timed out error below is the sample code, we can set the timeout during the callout: The default timeout is 10 seconds. The minimum is 1 millisecond …
-
How to get the default picklist value using Apex Class? Its possible to get the default picklist value using apex class and doesn’t require the SOQL Query and its not …