Fitness fricks always talk about carbs, protein and fats. They eat fruit, vegetable based on these parameters. This blog will show carbs, protein, fats and calories for given fruit or vegetable. There are…
Salesforce
- Salesforce
Enforce Object-level and Field-level permissions in Apex
by Dhanik Lal Sahni February 11, 2020Apex code is mostly run in system context so it is not considering current user’s permission. It is creating data integrity issue. Using with sharing keywords when declaring a class enforces Sharing Rules,…
Salesforce Queueable Job is very important for long running data updates. We must notify when particular data update is finished. This feature was not available till winter 2020 release. Salesforce…
- QuestionSalesforceSalesforce
Salesforce Interview Question – Security
by Dhanik Lal Sahni February 7, 2020This post is related to top 20 questions related to Salesforce security implementation. We have another post related to interview questions for salesforce integration and asynchronous apex. 1. What is Phishing?…
Community Portals are very important for business to engage customer and partners. Salesforce provide community cloud to make these portals using point and click as well as advance custom lightning…
- Salesforce
Audio to Text by Google Speech API in Salesforce Lightning
by Dhanik Lal Sahni January 31, 2020Recently we were having a requirement for getting text from audio or video file. These audios were majorly from customer calls with agents. Once we get text from audio files…
How to Download Files from S3 Server using Apex and Lightning Component Downloading or reading files from S3 server is required most of time in our Salesforce projects. This post…
- QuestionSalesforceSalesforce
Top 20 Salesforce Interview Question – Integration
by Dhanik Lal Sahni January 17, 2020Top 20 Salesforce Interview Question – Integration This post has top 20 question related to Salesforce integration and asynchronous apex. Asynchronous apex and integration are very important for processing large…
How to Upload Files to S3 Server using Apex Uploading and Reading files from AWS S3 server is one of frequently used requirement in Salesforce project. This post will give…
Factory Design Pattern Factory Design Pattern is one of important design pattern which falls under Creational Design Patterns of Gang Of Four. This pattern takes responsibility of creating object. Factory…