How to get the Case Number using ThreadID from Apex Class: using ThreadID, we can get the relevant Case Number using “getCaseIdFromEmailThreadId” method. see the below example for your reference: …
APEX
- APEXConfigurationSALESFORCESalesforce Interview QuestionsSalesforce.com
- APEXSALESFORCESalesforce Interview QuestionsSalesforce.comTriggersVisual ForceVisualforce
MVC Salesforce Architecture development
MVC Salesforce Architecture development What is MVC in Salesforce? M – Model (OBJECTS) V – View (Page Layout & Visualforce Pages) C – Controller (APEX CLASS) Model: Designing the data …
-
Integration between Salesforce.com and Beansstream: Please check the below links for more information about Salesforce.com and Beans stream integraitons: http://developer.beanstream.com/documentation/api-reference/ http://blog.formstack.com/2012/collect-manage-payments-beanstream-integration/
-
How to Execute the Javascript Functionality in Salesforce Custom Button: {!REQUIRESCRIPT(‘/soap/ajax/28.0/connection.js’)} var opportunityRecord= {!GETRECORDIDS($ObjectType.OpportunityLineItem)}; if (opportunityRecord[0] == null) { alert(“Please select at least one product to traffic.”) } else { …
-
Generating Salesforce Case Thread Id Using Apex Class Case Thread ID: “Case Thread_Id” Use for Preventing New Cases and Only Allowing Case Updates via Email. Case Thread ID contatins the …
- APEXForce.comSALESFORCETriggerVisual ForceWeb Service
Importing object data from CSV file through import wizard
Consider Account and CSVData__c object. Now we wanted to import the cvs data into CSVData__c object. Assume CSVData__c has accountname which is lookup field and csvname. So accountname can accept only …
- AjaxAPEXForce.comSALESFORCESalesforce.comVisual ForceVisualforce
Ajax implementation with ActionStatus in visualforce page
Ajax implementation in visualforce page using ActionStatus Visualforce Page: <apex:page controller=”exampleCon”> <apex:form > <apex:outputText value=”Watch this counter: {!count}” id=”counter”/> <apex:actionStatus startText=” (incrementing…)” stopText=” (done)” id=”counterStatus” /> <apex:actionPoller action=”{!incrementCounter}” rerender=”counter” status=”counterStatus” …
- APEXSalesforce.comVisual ForceVisualforce
Sending Email with Attachment using Apex class and Visualforce page
Apex Class: Public with sharing class SendemailController{ public String caseId {get;set;} Public SendemailController(){ caseId = ApexPages.currentPage().getParameters().get(‘Id’); } Public Pagereference sendEmailFunction(){ Case getEmail = [SELECT Id, Contact.Email FROM Case WHERE id=:caseId]; …
- APEXSALESFORCEVisual ForceVisualforce
Adding Error Message in the Visualforce page through Apex controller
Adding Error Message in the Visualforce page through Apex controller Syntax : <apex:pageMessages ></apex:pageMessages> Apex Controller: public class ErrorMsgController { public void DisplayError(){ Apexpages.addMessage( new ApexPages.Message (ApexPages.Severity.ERROR, ‘Required fields are …
-
How to Create a Wrapper Class In Batch Apex we can build a list of your custom wrapper class in your execute method, and maintaining that list at the class …