Ankush Dureja

Author's posts

Salesforce Certified Integration Architecture Designer Exam

Salesforce Certified Integration Architecture Designer Exam Tips How to pass Salesforce Certified Integration Architecture Designer Exam My Experience This exam sounds difficult. But in my experience this is easy exam. Out of all architect exam, I scored maximum in this exam. If you have worked on 2-3 integration projects and you have good hands-on experience in …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/salesforce-certified-integration-architecture-designer-exam/

Salesforce Certified Data Architecture and Management Designer Exam

Salesforce Certified Data Architecture and Management Designer Exam

Salesforce Certified Data Architecture and Management Designer Exam Tips How to pass Salesforce Certified Data Architecture and Management Designer Exam My Experience This exam was 2nd architect exam for me. Its not that much easy if we compare it with Sharing and Visibility Exam. But if you do good preparation and study all topics mentioned …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/salesforce-certified-data-architecture-and-management-designer-exam/

Salesforce Certified Sharing and Visibility Designer Exam

Sharing and Visibility Designer Exam

Salesforce Certified Sharing and Visibility Designer Exam Tips How to pass Salesforce Certified Sharing and Visibility Designer Exam My Experience This is one of easiest exam from all architect exam.  I believe it should be easy for everyone who has good knowledge about salesforce security model. Salesforce Security is fundamentals of Salesforce platform. Everyone who …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/salesforce-certified-sharing-and-visibility-designer-exam/

Compare old and new field values in trigger

Compare old and new field values in trigger Salesforce Sometimes we have requirement that our trigger should run only when some field value is changed on a record. So we need to compare value of that field between old version of record and new version of record to make sure that trigger will not run every …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/compare-old-and-new-field-values-in-trigger/

SObject row was retrieved via SOQL without querying the requested field

SObject row was retrieved via SOQL without querying the requested field SObject row was retrieved via SOQL without querying the requested field is very common error in apex. As name of error suggest, this error occurs when we try to use some field of an object instance which is not queried. There can be two …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/sobject-row-was-retrieved-via-soql-without-querying-the-requested-field/

Avoid recursive trigger in salesforce

Avoid recursive trigger in salesforce using static variable Avoid recursive trigger in salesforce using static variable Recursion occurs when same code is executed again and again. It can lead to infinite loop and which can result to governor limit sometime. Sometime it can also result in unexpected output. It is very common to have recursion …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/avoid-recursive-trigger-salesforce/

get current record id salesforce

get current record id salesforce

get current record id salesforce apexpages.currentpage().getparameters().get(‘id’) can be used to get current record id or other url parameters in apex code. Many times we have requirement to get current record id or url parameters of visualforce page in apex code. Many times we require the current record id in controller. For example we are redirecting from one visualforce …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/get-current-record-id-salesforce/

actionstatus visualforce disable screen

actionstatus visualforce disable screen

actionstatus visualforce disable screen actionStatus visualforce component displays the status of an AJAX update request. An AJAX request can either be in progress or complete. Depending upon the AJAX request status (whether AJAX request is in progress or complete), this component will display different message to user. In many scenarios AJAX request takes some time. …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/actionstatus-visualforce-disable-screen/

custom label in apex code salesforce

custom label in apex code salesforce example We can use System.Label.labelName to access custom label in apex code. Custom labels are custom text values that can be accessed from Apex classes or Visualforce pages. The values can be translated into any language Salesforce supports. Custom labels enable developers to create multilingual applications by automatically presenting …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/custom-label-in-apex-code-salesforce/

custom label in visualforce page

custom label in visualforce page salesforce We can use $Label global variable to access custom label in visualforce page. Custom labels are custom text values that can be accessed from Apex classes or Visualforce pages. The values can be translated into any language Salesforce supports. Custom labels enable developers to create multilingual applications by automatically …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/custom-label-in-visualforce-page/