Posts

Differences Between Future and Queueable Apex

  Future Method Queueable Apex 1.  Future will never use to work on SObjects or object types. 2.  When using the future method we cannot monitor the jobs which are in process. 3.  The future method cannot be called inside the future or batch class. 4.  The future method will never be queued. 5 . It is annotation based so we can use the same apex class to write the future method. Syntax: @future 6 . Future method supports only primitive datatypes. 1.  Queueable Jobs can contain the member variable as SObjects or custom Apex Types. 2.  When using queueable jobs it will make the AsyncApexJob which we can monitor like Scheduled jobs. 3.  Queueable Apex can be called from the future and batch class. 4.  Using Queueable Apex will chain up to queueable jobs and in Developer Edition it is only 5 Jobs. 5. It is a class which implements’ queueable interface. Syntax: public class CLASS_NAME implements Queueable{}. 6. Queueable  supports both primit...

OmniStudio Developer Certification Maintenance (Summer ’22)

                                        OmniStudio Developer Certification Maintenance (Summer ’22) 1.A FlexCard can contain an element with sequential actions. What are sequential actions? Answer : A list where the first action fires, completes, and triggers the next action 2.Which OmniScript supports Microsoft Word and Microsoft PowerPoint templates. Answer : fndMultiDocxLwc 3.In an org that does not have OmniStudio licenses installed, what SObjects are used after a Data Model update? Answer : OmniStudio for Vlocity SObjects 4.Conditions can be set on an action that must be met before that action displays on a menu. Which panel has the Conditions option? Answer : Properties panel

Salesforce Integration Pattern in easy way

Image
  More Detail:https://developer.salesforce.com/docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_intro_overview.htm

Big Object Implementation into Salesforce Org.

Image
How To Create Big Object in Salesforce Org Step 1: Create object File: Below have details of sample object file.                    Object name:API Log.                    File name=API_Log__b.object.                       <?xml version="1.0" encoding="UTF-8"?>   <CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">      <deploymentStatus>Deployed</deploymentStatus>      <fields>        <fullName>EndPointURL__c</fullName>        <label>EndPointURL</label>       <length>131072</length>           <required>false</required>        <type>LongTextArea</...

Platform Developer I Certification Maintenance (Summer '18)

Image
Maintain Your Platform Developer I Certification for Summer ’18 7 answer=B Enjoying...

Administrator Certification Maintenance (Summer ’18)

Image
Units Learn What’s New with Sales and Analytics Learn What’s New with Service and Communities Enjoying...

Configuration Postman Tool with Salesforce

Image
Postman Tool Setup and Configuration Ø    HOW TO INSTALL POSTMAN TOOL ON GOOGLE CHROME Ø    MANAGE ENVIRONMENT SETUP Ø    IMPORTING COLLECTION INTO POSTMAN Ø    CONFIGURATION OF FIRST TAB TO GET SESSION ID Ø    CONFIGURATION OF SECOND TAB TO GET WEB SERVICE API RESPONSE Ø    FEW USEFUL LINKS How to install Postman Tool on Google Chrome: Step 1: Install Google Chrome   If you haven’t done so yet, please install Google Chrome Step 2: Install the Postman extension for Chrome   Open Google Chrome and install the Chrome Postman extension. Step 3: Install the Postman Interceptor extension for Chrome   Install the Postman Interceptor extension. Step 4: Configure Postman Click on Apps Ø   Click on the Postman icon Ø   You will get access to all the Google Chrome installed extension. Ø   Click on Postman      ENVIRONM...