Symptom
After configuring the Unit of Measure (UoM) in Guided Selling once, you cannot change the value. In the UI, the field appears grayed out and shows a blocked symbol when hovering the mouse.
Environment
SAP Cloud for Customer
Reproducing the Issue
- Administrator work center.
- Sales and Campaign Settings view.
- Guided Selling Settings > Configure Guided Selling.
- Observe Define Unit of Measure.
- The field is grayed out and a blocked symbol appears when hovering.
Cause
When the UoM is set in Guided Selling, a background process is triggered to calculate the Total Quantity for all Opportunities. After this initial setup, the UoM field is locked for direct editing in the user interface to protect data consistency.
Resolution
Set the configured UoM back to null via the configuration API, so the customer can re-select a different value in the UI.
- Navigate to Administrator > Sales and Campaign Settings.
- Before clicking “Configure Guided Selling”, open your browser’s developer tools and go to the Network tab.
- Click “Configure Guided Selling” and locate the request named “opportunityConfiguration” in the Network tab.
- Copy the Request URL from that “opportunityConfiguration” request.
- In Postman, create a new GET request and paste the copied Request URL.
- Back in the browser Network details for “opportunityConfiguration”, find Request Headers > Authorization and copy the Bearer token (starts with “ey...”).
- In Postman, open the Auth tab, set Auth Type to “Bearer Token”, and paste the token into the Token field.
- Send the GET request. You should receive a JSON response representing the current Guided Selling configuration.
- Copy the entire JSON response. Change the request method from GET to PUT in Postman.
- Paste the copied JSON into the request body (set Body to raw, JSON).
- In the JSON body, locate the property for the UoM (for example, “targetUnitOfMeasure”, naming can vary) and set its value to null. Example: { "targetUnitOfMeasure": null, ... other configuration fields unchanged ... }
- Send the PUT request to update the configuration.
- Return to Administrator > Sales and Campaign Settings > Guided Selling Settings > Configure Guided Selling. The UoM field should now be selectable again. Choose the new UoM and save.
Keywords
Guided Selling, Pipeline Manager, Unit of Measure, UoM, change UoM, update UoM, reconfigure UoM, Total Quantity, Opportunity, configuration, Guided Selling Settings, C4C , KBA , LOD-CRM-SBS-PI , Pipeline & Pipeline Flow , How To
SAP Knowledge Base Article - Public