Posts

Auto calculate - Block price - In Salesfroce CPQ

Image
Index Auto Calculate In QouteLineEditor (QLE) Block price     Auto Calculate In QouteLineEditor (QLE) 1.        Setup -> Installed Package -> Click on Configure In CPQ Package     2.        Click on “Pricing and Calculation” Tab  and then click on check box “Calculate Immediately”.   Once This is enabled , If we change “ Quantity”, “Additional Disc.” “MARKUP”  Fields  In quoteLine record and click out side any where Caliculation will Happen automatically without clicking on Calculate Button.   Block price :   1.        Create product “Match Box”   and configure fields as below Image.    1.Give product name “Match Box”    2. Check Actice check box    3. Pricing Method as “Block”   2.        Add standard price book entry as “2”.     3.     ...

RLM - Revenue Cloud Advanced - Partner Pocket Guide

Image
 Revenue Cloud Advanced -  Partner Pocket Guide

Jest - lwc Test - Test Lightning Web Components

Test Lightning Web Components  https://www.youtube.com/watch?v=NH0YQKJMTKg  https://developer.salesforce.com/docs/platform/lwc/guide/testing.html https://github.com/trailheadapps - this have salesfroce sample apps with lwc - inside lwc component folder also have testing code

ampscript

 https://b2shashi-mc.github.io/ampscript/

Salesforce CPQ Price Waterfall

 Salesforce CPQ Price Waterfall List Unit Price List Total Special Price Special Price Type Regular Unit Price Special Price Description Customer Unit Price Customer Total Net Unit Price Net Total Contracted Price Package List Total Unit Cost Package Total Markup Package Cost Prorated List Price

Debugging in Salesforce

  Debugging in Salesforce is not just reading logs — it’s understanding how the platform behaves behind the scenes. Most performance issues, Flow faults, and trigger failures can be diagnosed quickly when you know what to look for. Here’s a clean technical workflow for debugging Salesforce issues effectively: 1️⃣ Start With the Right Debug Log Levels Set log levels for: Apex Code → FINE Workflow → FINER Validation → FINER System → INFO This gives a complete view without overwhelming noise. 2️⃣ Identify Where the Transaction Broke Look for: FLOW_ELEMENT_ERROR SOQL_EXECUTE spikes FATAL_ERROR exceptions DML_BEGIN followed by failure EXCEPTION_THROWN Most failures occur around a specific element or a DML boundary. 3️⃣ Trace CPU Time Consumption The CPU line should be checked first, not last. Watch for: Nested loops Too many Flow Decisions Large collections Repetitive queries Subflow chaining Anything causing CPU > 10,000ms will break the transaction. 4️⃣ Check for Unselective Querie...