Batch Apex can run long-running processes that run on thousands of records on the Lightning Platform. Batch Apex operates over small batches of records, covering your entire record set and breaking the processing down to manageable chunks. Batch jobs can also be programmatically scheduled to run at specific times using the Apex scheduler, or scheduled…
Platform Developer I Certification Maintenance (Winter ’24) Get Hands-on with Bind Variables in a SOQL Query
Salesforce maintenance page link https://trailhead.salesforce.com/content/learn/trails/maintain-your-salesforce-certifications Get Hands-on with Bind Variables in a SOQL Query The new Database methods (queryWithBinds, getQueryLocatorWithBinds, and countQueryWithBinds) simplify query binding by resolving bind variables directly from a Map parameter using a key. This change affects Lightning Experience and Salesforce Classic in Enterprise, Performance, Unlimited, and Developer editions. Use Below Solution…
How to check Salesforce current release version
Go to Trust Status. The Status page on Salesforce is a tool that allows users to view any current incidents or issues that may be affecting the platform. It also provides quick access to recently viewed instances, which are specific configurations or setups within an organization’s Salesforce account. To view information for a specific instance,…
Salesforce Certification Coupons / Vouchers
Everybody wanted to complete the certifications and prove their capabilities in Salesforce technology. It would be better to have valid coupon codes to get some discount. I will keep this page updating with the new and valid coupon codes. New/Retake Registration Coupons Salesforce Exam Coupon 50% offer coupon Admin- Aspp2s23pS82qiQm Admin- AHbb2H23bj5G2P8e Admin- AuZZ2u23ZHbpqRZe Platform…
Nested / Cascade query in SOQL
Get contact object’s related Opportunity When you have a master-detail relationship ( Contact to Opportunity) and want to get opportunities data on a contacts list page by using a custom component then you need to get each contact related opportunity. Contact can have multiple opportunities for achieving this in the best scenario need to write…
Declarative tools in salesforce
There are three types of main declarative tools in salesforce. They are mostly used for automating business processes. A savvy admin can save users time and clicks while creating consistency of processes and increasing data integrity, so the tools available on Salesforce can be very useful to organizations. In salesforce stating time workflow rule was…
SalesForce Questions
Salesforce mind dumps Universal Container wants Opportunities to no longer be editable when reaching the Closed/Won Stage How Should a developer accomplish this? A) Use Flow Builder B) Use a validation rule C) Mark Fields as read only on the page layout D) Use the process Automation Settings. Show Answer Use a Validation rule Which…
PHP Interview Question 2021
We are updating some recent interview topics for PHP developer with 4-5 years of experience. OOPs is main target for all interviews. you must cover all oops based questions, most of interview are start with oops then they go for your expertise . polymorphism in oops Geo-fencing and Cluster in google map Difference between authentication…
Ubuntu 20.04 Bluetooth not working Resolved
Bluetooth not working in ubuntu after update If you have been using Linux for a while, you would know Bluetooth and Linux don’t go well. Whatever may be the reason, it’s always face problem when you update Linux versions. Recently, since my upgrade to Ubuntu 20.04, I have come to notice that Bluetooth devices stop…
Git Log Commands
Show logs with file differences(we can add number of the commit which we want to see like -1,-2): git log -p Show logs with addition and deletion in a particular commit: git log –stat Show commits in one line: git log –pretty=oneline Show commit in short form: git log –pretty=short Show log from last two…
Create a swap memory in Linux
Swap memory is like RAM, in Linux is used when the amount of RAM is full. If the system needs more memory resources and the RAM is full then, other inactive pages in RAM are moved to the swap memory. While swap space can help machines with a small amount of RAM. Swap memory creates…