An admin has created a text field Configuration Attribute for Bundle A. The admin wants the attribute to start with a dynamic value the moment the configuration page loads.
Which steps should the admin take to meet this requirement?
Correct Answer: B
Requirement:Populate a Configuration Attribute with a dynamic value when the configurator page loads.
Solution Mechanics:
* Process Builder can be used to dynamically set values on records based on predefined logic.
* By targeting the Product Option field, which maps to the Configuration Attribute, Process Builder ensures that the value is set upon record creation.
Steps to Implement:
* Create a new Process Builder.
* Trigger on the creation of the Quote Line record (or related record based on Configuration Attribute setup).
* Define criteria to determine the dynamic value.
* Use the Update Records action to populate the Product Option field with the default value.
Advantages of Process Builder:
* Allows for dynamic and conditional logic.
* Automates the default value population without user intervention.
Testing and Validation:
* Create a test bundle with the Configuration Attribute.
* Load the configurator and verify that the attribute is pre-populated.
Recent Comments (The most recent comments are at the top.)
Answer
A. Create a formula text field on the Quote, constructing the formula to return the desired default value. Update the Configuration Attribute Default Field to identify the Quote formula field.
Explanation
To set a dynamic default value when the configurator loads, Salesforce CPQ uses the Default Field on the Configuration Attribute:
The Default Field can reference a field on the Quote (including formula fields)
A formula field allows the value to be dynamically calculated at runtime
This value is populated immediately when the configuration page opens
Why not the others?
B: Process Builder runs after record creation, not during configurator load
C: Price Rules affect Quote Lines, not initial Configuration Attribute defaults
D: Requires manual action (“Apply Rules”) and does not load automatically