Skip to main content

Posts

Salesforce CPQ : Create Multiple Orders from Quote

1.     Go to Installed Packages 2.     Click on Configure next to Salesforce CPQ Package 3.    Check  Allow Multiple Orders checkbox under the Order Tab 4. Populated the Order By field on the Quote before creating Orders from Quote 5. Create Orders by clicking Ordered check box. 6. Check that multiple orders are created on the Quote.  
Recent posts

Salesforce CPQ : Allow Creating Order only for Approved Quotes

1.     Go to Installed Packages 2.     Click on Configure next to Salesforce CPQ Package 3.    Check  Require Approved Quote checkbox under the Order Tab 4. Create a Quote and Quote lines and click on Ordered checkbox. 5. The Order Creation will fail with a message "The primary quote must be approved before an order can be created."

Set Or Get lightning-input-field in value lightning web component

Set the data- attribute on the lightning-input-field       <lightning-input-field data-field-name-id="AccountName"           field-name="AccountName__c">      </lightning-input-field> Use the  this.template.querySelector() to   find the correct lightning-input-field      let field = this.template.querySelector("lightning-input-field[data-field-name-id=AccountName]");  Print the value       console.log(field.value); Set a new value to for the lightning-input-fiel d      field.value="new value";        Ta Da 🙌 

Selection Binding using Static Step

Welcome to this new blog. Today we will look how to create selection binding using static step For this exampe we will use a Toggle widget which will consist of values that we will be adding to the static steps. Let's get started.. Create a new lens and add it to the dashboard as a step. Okay there are couple of ways to do this  Click on the dataset this will open a new lens. Change the grouping and filter and select clip to dashboard. This will open a new dashboard tab. From the Einstein app click on create blank dashboard then select create step/create query, select the dataset and apply the necessary grouping and filters and click done.          In this example for the bar length we will keep the count of rows and for the bar (Grouping) we will select Account Type                                                  ...

Create Static Step in Einstein Analytics Dashboard

How to create static step in Einstein Anlytics Dashboard ? You got the question right? today we will look at how to create static step in dashboard. Let's get started.. Once your on the Dashboard page click C reate Step button from the right sidebar. If your not able to see Create Step button click once inside the dashboard This will show a new pop up select  Create a Static Step with Custom Values. This will again open a new pop up for creating static step. Provide the name for the static step  & values of static steps.  Each static step value consist of the Display & the Value. The Value will be the actual column name from the dataset or the actual value you would like to provide to do sorting & filtering on the data.  The Display is the text that would be visible to the user You can see the new step being added to the dashboard. You can then use this step with Dashboard widgets like Toggle, List etc. Hope this will help...