Wednesday, 9 September 2020

Dynamically displays quote fields on the quote line editor based on the type of user or quote or profile

 

Issue :

  1. Previously in Quote Line Editor, we can't control the fields of the Quote. Fields remain the same for all the users and all the profiles. What if you want to have different fields for Partner and Internal Users

Solution :

  1. In the Winter '21release, CPQ has introduced a special field called "HeaderFieldSetName". You can create a field on the quote object to dynamically display specific quote field in the quote line editor. You can choose to control the quote fieldset that is displayed by using a formula field or you can allow users to make their own selection by using a picklist field.
  2. Please note this field needs to be created in the org, it doesn't come from the CPQ package by default.

Step 1 :

  1. Create the fieldsets on the Quote say for example "Partner" and "InternalUser" & add fields to the fieldsets.

Step 2 :

  1.  Navigate to the Quote Object.
  2.  Create a New Picklist Field or Formula field on the Quote object.
  3.  Set Field Name to HeaderFieldSetName.
  4.  Add the picklist values as(fieldset name created in Step 1)
    1. Partner
    2. InternalUser

Step 3 :

  1. Go to the Quote object 
  2. Edit the Line Editor Field Set and include the new field("HeaderFieldSetName")
  3.  Include the HeaderFieldSetName field on all fieldsets which are created in step 1
  4.  Click Quick Save

Step 4 :

  1. Go to any Quote and open the Quote Line Editor.
  2. Change the HeaderFieldSetName field on the Quote and do Quick Save






Prerequisite :
  1. You need to install, Winter '21 i.e 228 or above. Please note this is a prerelease feature of CPQ.


Tuesday, 24 March 2020

Priorities of Discount Schedules across different objects in Salesforce CPQ

There are discount schedules on a few objects in Salesforce CPQ :
  1. Contracted Price
  2. Product Feature
  3. Product Option
  4. Product
But which one takes priority? Below is the diagram and notes which explain the priority of discount schedules in Salesforce CPQ



      Contracted Price Discount Schedule : 
If you generated a contracted price from a product that has a discount schedule, then this field refers to the discount schedule on the product record. If you manually created the contracted price, you can define the discount schedule on the contracted price record. As long as the contracted price is active, the discount schedule on the Contracted Price record overrides the discount schedule on the product record.

       Product Option Discount Schedule : 
Applies this discount schedule to quote lines generated from the product option. The discount schedule overrides discount schedules on the product or feature related to this product option. This field is useful when you have a product sold standalone or as part of a bundle and want unique discount schedules for each type of sale.
       
       Product Feature Discount Schedule : 
Lookup to a Discount Schedule that applies to all this feature's options. This value overrides any discount schedule defined on the product option's product record. However, it doesn't override a discount schedule on the product option record.
       
       Product Discount Schedule : 
Lookup to a Discount Schedule that applies to the Product record.


Wednesday, 11 March 2020

Salesforce CPQ : Order Management Plugin to populate Order's Start Date


Salesforce CPQ provides two options to set the Order Start Date :

  1. Quote Start Date
  2. Today's Date
What if you want to populate the Start Date of the Order to a specific date from Quote, admin or developer will 
  1. Create a Process Builder to populate from Quote
  2. Before Trigger on Order to populate the Start Date
The disadvantages of the above approach are an extra update on the Order and its custom build. This approach is likely to conflict with CPQ automation and validation. By default, CPQ will set the Order Start Date according to the package setting. When Order Start Date is set, managed Apex Triggers set Order Product Start Dates and End Dates, preserving the overall term length.

What are the options available out of the box from Salesforce CPQ?


Order Management Plugin : 
  1. Is used to set the Start Date of the Order, Salesforce CPQ automatically calls the plugin code to populate the Start Date of the Order.
  2. When the Start Date of the Order is set, Order Lines Start Date and End Date is adjusted accordingly.
  3. Order Management Plugin is just used to populated the Start Date of Order but not any other fields on Order
  4. The advantage of the plugin is you can also check any business logic in the apex class. Based on the Quote type you can set the Start Date. Say for example amendment Quote Start Date will be always Order Start Date this will ensure Subscription End Date doesn't cross the End Date of Contract.
Setup :
  1. Create a field on Quote object called Order_Start_Date__c this can be a formula date field or date field.
  2. Create a new apex class that implements SBQQ.OrderManagementPlugin
  3. The name of the Apex class for the Order Management Plugin(i.e CPQ_OrderPlugin) goes in the field Order Management Plugin in the Plugins tab of the CPQ Package Settings. 
  4. Go to the Order tab in the CPQ package settings and set Default Order Start Date to "-- None --". If any other value is populated here, it overrides the plugin.



Code : 
  1. You can find the plugin code in GitHub code: https://github.com/laxmanrao564sf/OrderPluginSalesforceCPQ
Conclusion :
  1. First preference is always to use out of the box configuration feature from CPQ
  2. Second preference is to check if there are any APIs/Plugins provided by CPQ
  3. Go for a custom build.

Monday, 2 March 2020

Automate Opportunity & Quote Creation without code - CPQ

Usually, if we need to create the Opportunity & Quote on a click of a button we automate using apex code and lightning components.  The disadvantages are :
  1. Admins can't change the code and need to be done by a developer.
  2. Needs to write a test class
How can we achieve this without code: Flows(Flow Builder) is a powerful feature where you can use the forms and perform Dml operations. 

What is a Flow :
Flow is an application inside the Salesforce that automates a business process by collecting the data and performing operations in your org or an external system. Flow can fetch, delete, update and create records on multiple objects. Flows in Salesforce can be implemented in two ways Screen Flows Auto-launched Flow.

Screen Flows
In this type of flow, there will be a series of screen elements to gather information from the user and perform some operation. Screen flows can be accessed from custom buttons, custom links, Visualforce Pages, etc. This type of flow is implemented if user interaction is needed in the process.

Auto-launched Flow
Auto-screenshot runs in the background without any user interaction. Auto-launched flows can be accessed from custom buttons, custom links, Visualforce Pages, process builder, and Apex, etc.


Below are the steps flows does in the solution : 

  1. Query the Account fields in the flow 
  2. Flow Screen 
    1. To Capture Opportunity Fields
    2. To Capture Quote fields.
  3. Assign the Capture variables to Opportunity
  4. Perform DML on the Opportunity record
  5. Assign the Capture variables to Quote including assigning the Opportunity Id inserted in the Step4
  6. Perform DML on the Quote record




You can try the demo of the working solution in the community : 
  1. Open the below URL: https://resourcefulbear0904-developer-edition.um1.force.com/customersupport/s/detail/0013z00002PVFd3AAH?language=en_US
  2. Hit the button Create Oppty & Quote on the Account Detail page
Interesting facts : 
  1. In the screen component, you can have lookup fields also for the object which will give the ability for the Users to select corresponding object records (like Accounts)
  2. You can invoke Apex code from the flow if needed
  3. You can call lighting components from the flow. 
  4. If you have enabled multi-currency you can populate CurrecyIsoCode from the Account which is not possible using the Quick Action.

Conclusion :
  1. Flows are not a replacement for apex code or lighting components, do the things declaratively as much as you can and use customizations when it's absolutely necessary. Developer/Architect should take a wise decision between declarative and customization. 
  2. Solution demo in the community is just to explain how fast the platform is and what can be done using the flows as an example*
  3. I have discussed about Opportunity & Quote to create from Flow. You can create Flows to create most of the objects and automate them.
Github code :
* Please note there will licensing involved(eg to use CPQ in the communities etc). 

Friday, 21 February 2020

Automate Conversion of Negative Invoice Lines - Salesforce Billing

Issue :

  1. If you want to convert a Negative Invoice(with Negative Invoice Lines), you would have to hit the button on the Invoice called "Convert Negative Lines" to create the Credit Note from Invoice
  2. If you want to have a few invoices then it's very easy to convert them manually, what if
    1. You have hundreds of Invoices?
    2. You want to automate the process of credit note creation from Negative Invoice Lines?
    3. You don't want Finance Users to convert manually?

Solution :
  1. The answer to all the above questions is, Salesforce Billing now provides Rest API & apex class to automate the process of Negative Invoice Lines to Credit Notes. Thanks to Spring ’20
    1. Use Apex Class blng__NegativeInvoiceToCreditNoteAction if you want to call from the Salesforce org
    2. Use Rest API to make an inbound call to Salesforce from the external system.  
  2. The advantages are you can automate this process and you can convert multiple Negative Invoices to Credit Notes in one transaction.  
How do you call the Apex class blng__NegativeInvoiceToCreditNoteAction using the Process Builder : 
  1. Create the field on the Invoice like "Converted Invoice into Credit Note?" as default value as false. This will ensure the process builder will execute only once.
  2. Create the Process Builder and select the action Call Apex. Entry criteria for the Process Builder depend upon the business and when you want to automate/create the Credit Note. 


Common Issues/Troubleshooting :
  1. Before you make a call to the above class, make sure the Invoice is Posted. If you try to call the apex class on Draft Invoice or Cancelled Invoice you will get an error. 
  2. Add the apex class blng__negativeinvoicetocreditnoteaction to profiles if you want to use this in the Process Builder
In Conclusion : 
  1. Use the apex class blng__NegativeInvoiceToCreditNoteAction or rest API to automate the process without any manual step or customization.
  2. Please note Billing will only create the Credit Note and Credit Lines. But Credit Note is not allocated to Invoice. You would have to do manually allocate to any invoice. Hope Salesforce Billing will give a new API/Class to automate in the future.

Related Posts :