Optimizing Discount Allocation with Salesforce Revenue Cloud’s Discount Distribution Service (DDS) In today’s competitive business environment, offering discounts is a powerful strategy to win customers and close deals. However, applying a discount at the quote level, instead of individually on each line item, can create pricing inconsistencies, lead to manual errors, and cause difficulties in […]
Introduction to lightning web components
If you are trying hard to keep track of the users time which they spent in your Salesforce org then you will be happy to try this solution which I built for you. I have created an app which runs as a background utility in an app and keep tracks of the time user spent […]
I released the 2nd version of the app which I built half a year ago. Previous version of the app had some limitations like you can’t control the number of columns on edit product layout and the field which you want to carried over in new opportunity. Few Salesforce customers have been using it for […]
This is a question which I came across on the success community and which made me realise that it could be something which admins always look for an answer. Through this blog post I am going to give a simple solution which can even used by a Salesforce Admin who is not good with code. […]
If you have been enjoying the development of lightning components since each release is coming up with exciting features. I liked the Lightning:RecordEditFrom and have used it in various projects. While working on a piece of a project, I liked the idea of showing fields based on the page-layout so a System Administrator can control […]
I am following this idea since I needed this feature in one of my projects. Since Salesforce already has this in their future roadmap, I realized that It could be an addition to my #GivingBackToCommunity list. I managed to create a lightning component which can be used with lightning action on Opportunity records. This will […]
Lightning design system comes with some really nice cascading stylesheet but still, there are some components where JS support is not provided. During a project, I came across the same where I had to write Javascript code by myself. After going many rounds of testing and changes, finally, I managed to get it working. It’s […]
How to remove the arrows from lightning:input[type=”number”]? I think this is a generic question and Salesforce devs have looked for the ways to get rid of the spin buttons on the input field without changing it to text type for a purely numeric behaviour. You just need a few lines of CSS to solve your problem. […]
Creating a dynamic SOQL which includes all the fields I have seen this question several times on developer forums and I thought it could be another addition to Salesforce cookies. If you are wondering how can you query all the fields of an object then you can use the following code snippet. https://gist.github.com/sfcure/81888ea3d0038b8f14df7c2006d98d7a The above […]