Renewal pricing for products with price and quantity ramps
Summarize
Summary of Renewal pricing for products with price and quantity ramps
This feature enables ServiceNow customers to manage renewal uplift pricing for product offerings that include price and quantity ramps. Renewal uplift refers to the price increase applied when renewing contracts. Because ramped products can have multiple segments with varying prices, quantities, and durations, calculating the renewal unit price requires flexible methods to accurately reflect pricing changes over time.
Show less
Key Features
- Price basis options for renewal unit price: Customers can configure the pricing engine to use either the last ramp segment or the first ramp segment as the price basis for renewal calculations.
- Term basis options: The term used for uplift calculation can be the duration of the last segment or the total ramp duration (all segments combined).
- Customization properties: Two system properties,
sncsmpricing.ramprenewalpricesegmentandsncsmpricing.ramprenewaltermbasis, allow configuration of price and term basis through the Customization Properties for Pricing form. - Quantity sourcing: Quantity is always sourced from the last segment, regardless of price basis selection.
- Handling non-standard segment durations: The pricing engine rounds up non-standard segment lengths (e.g., 18 months) to the nearest full year to maintain consistent uplift behavior.
- Extension point for custom uplift logic: Customers can override default renewal uplift calculations by using the
sncsmpricing.RampRenewalUpliftCalculationExtensionPoint. This allows custom logic such as comparing uplift amounts from different segments and selecting the maximum uplift price. - Uplift multiplier control: The overall uplift multiplier is set via the
renewaluplifttermsystem property.
Practical Application
When renewing ramped products, customers can choose how the pricing engine calculates the uplift to best match their business model. For example, selecting the first segment price and applying the uplift over the full ramp term results in a higher renewal price compared to using only the last segment price and term. Using the extension point, customers can implement custom logic to choose the highest renewal price from multiple calculation methods.
This flexibility ensures that renewal pricing accurately reflects contract terms and ramp structures, supporting consistent and predictable revenue growth through contract renewals.
How to Configure
- Set the price and term basis through the properties
sncsmpricing.ramprenewalpricesegmentandsncsmpricing.ramprenewaltermbasisin the Customization Properties for Pricing. - Adjust the overall uplift multiplier using the
renewaluplifttermsystem property. - Use the
sncsmpricing.RampRenewalUpliftCalculationExtensionPointfor custom renewal uplift logic by navigating to All > Pricing > Administration > Scripted Extension Points and selecting this extension point.
You can control how renewal uplift pricing for product offerings with price and quantity ramps is calculated by the pricing engine. A renewal uplift is a price increase applied to a product when a contract is renewed.
Overview of renewal pricing for products with ramps
When a product offering with ramps is up for renewal, determining the renewal unit price for the offering can be complex because a ramp may have multiple segments with different prices and quantities.
Ramp deals may also have standard (yearly or quarterly) and custom segment durations, making it difficult to choose which segment price to use as the price basis and the term for determining the renewal unit price used in uplift calculations. For non-ramped products, the uplift is calculated by taking the unit price and applying the uplift percentage over the renewal term.
- Price basis for calculating renewal unit prices
- The renewal unit price is the starting price for a contract renewal line. The pricing engine supports two ways to calculate the renewal unit price using the segment and term. By default, the pricing engine uses the unit price basis
from the last segment and the duration of the last segment for the term.
However, the pricing engine can use the first segment as the price basis and apply the uplift across the entire ramp term (total ramp duration). You can set the first segment as the price basis and entire ramp term by using the pricing system properties sn_csm_pricing.ramp_renewal_price_segment and sn_csm_pricing.ramp_renewal_term_basis. You set these properties by using the Customization Properties for Pricing form (navigate to ).
Figure 1. Customization Properties for pricing - Example of uplift calculations
- The following example shows how the pricing engine uses the different price basis and term values to calculate the unit price:
Table 2. Uplift calculation example Price basis and term Calculation Last segment + Segment term Last segment price: $220. Last segment = 1 year. Effective uplift = 10%. Renewal price = $220 + $22 = $242 First segment + Full term First segment price: $240. Full ramp = 3 years. Effective uplift = 10% x 3 = 30%. Renewal price = $240 + $72 = $312 Note:Quantity is always sourced from the last segment regardless of which price basis method is selected. The price basis configuration affects only the unit price and term for the uplift calculation. - Non-standard segment durations
-
When a ramp has non-standard segment lengths (for example, a segment that spans 18 months rather than 12), the pricing engine rounds up the segment duration to the nearest full year before computing the renewal price. This provides consistent year-over-year uplift behavior even when segment lengths do not align with calendar years.
Overriding default renewal uplift calculations
You can override the default renewal uplift calculations for ramped products made by the pricing engine by using the sn_csm_pricing.RampRenewalUpliftCalculationExtensionPoint. You can use this extension point to
customize the logic for calculating renewal uplift pricing. Your inputs can include segment data, unit price, and term for each ramp segment.
For example, you might want the pricing engine to calculater the price basis and term for both the last and first segments to determine which price basis provides the maximum uplift amount. You could have the pricing engine choose the higher value of the two calculated renewal prices to use as the renewal price.
| Price basis and term | Calculation |
|---|---|
| Last segment + Segment term | Last segment price: $220. Last segment = 1 year. Effective uplift = 10%. Renewal price = $220 + $22 = $242 |
| First segment + Full term | First segment price: $240. Full ramp = 3 years. Effective uplift = 10% x 3 = 30%. Renewal price = $240 + $72 = $312 |
| Value selected by pricing engine | Max ($312, $242) = $312. The pricing engine uses the First segment price basis and Segment term to calculate the renewal price. |
Controlling renewal uplift pricing for ramped products
- Uplift renewal multiplier: To set the uplift renewal multiplier, use the
renewal_uplift_termsystem property. For more information, see Set properties to control pricing processing. - Segment basis and term used by the pricing engine: Use the system properties
sn_csm_pricing.ramp_renewal_price_segmentandsn_csm_pricing.ramp_renewal_term_basis. To learn more, see Set properties to control pricing processing. - Override the default renewal uplift calculations for ramped products: Use the
RampRenewalUpliftCalculationExtensionPointto customize the uplift calculation logic. Access the extension point by navigating to and in the Extension Points list, selectsn_csm_pricing.RampRenewalUpliftCalculationExtensionPoint. Your inputs can include data such as the unit price and term for each ramp segment.