Posts

Percent of total

Image
  Percent of total 1. Create Product "Smart TV" as below image.        Product Name  :   Smart TV       Product Code    :   Smart TV       Active : True Under section " Salesforce CPQ Pricing"  fiield value  Pricing Method = List 2. On Related tab add Price book entry as below Create Another Product  On related records Create Price book entry as below screen Then we will go to quote line editor and add these two products lets observe hiw these are behaving. even if we add product it's cost reflecting as "0"  If you observe Once "Smart Tv" Product added to quote Its price is reflecting If you observe any other product adding to quote line the tv instalation product price is impacting but this is not our expectation. It should reflect only for tv product only.

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...