You are here: Admin Explorer Folders > Rates > Repricing

 

Repricing

Sometimes a re-price may occur after the initial product is launched. The processes and structure of the product may not change, but the re-price could change some aspects of the coverage such as the base coverage rates.   

 

In order for OIPA to use a set of different rates from the original product, you must use a combination of the EffectiveDate, ActiveFromDate and ActiveToDate in the AsRateGroup table. Everything else in the AsRateGroup table will remain the same. The date information, along with the Rate Description and criteria for the Rate Group, is used by a configuror to point to the correct stored values in the AsRate table. Regardless of how many entries for a single Rate Description are entered into AsRateGroup, the differentiating rate group information needs to be entered to ensure that only one set of rates will be valid for any policy.    

 

EffectiveDate will determine the set of rates to retrieve based on the RateDescription. It also determines for a specific policy which rates are active, meaning that they are valid based on a set date value. This is most commonly a PolicyField or a SegmentField. In the Product Templates, it is a SegmentField called SegmentActiveDate. OIPA will refer to the policy and plan effective dates when identifying what RateGroups are applicable according to the EffectiveDate.   

 

Once a set of RateGroups is retrieved that have the required EffectiveDate (there may be a few at this point), the list is further narrowed down based on the Activity date, which will use ActiveFromDate and ActiveToDate to determine the applicable rates.

 

RateGroup selection SQL Pseudo Code that is generated:

SELECT * FROM AsRateGroup

WHERE rateDescription = [RateDescription]

AND effectiveDate <= [EffectiveDate]

AND activeFromDate <= [ActiveDate]

AND ( activeToDate >= [ActiveDate] OR activeToDate is null ) 

 

Repricing for New Policies -vs- Repricing for Existing and New Policies

By using Rate Groups, actuaries are given the opportunity to do one of the following:

 

In either case, only one set of rates is valid for a policy at any one time.

 

Example One: Two Sets of Rates are Open

Re-price a product for an existing benefit that sets new rates for a product, but the new rates are used only for new policies after a given date. Existing policies will still use the old set of rates.  

 

Mapping it Out

Line one is used for RateDescription=BaseRates where policies have an EffectiveDate from 1/1/2000 (inclusive) to 1/1/2004 (exclusive).

Line two is used for RateDescription=BaseRates where policies have an EffectiveDate from 1/1/2004 (inclusive) forward.

 

Mapping out Rates

Sample of Rate Effective Dates

 

Backdating

Should backdating of activities be allowed, then the ActiveFromDate would not match the EffectiveDate/RateActivationDate. An example where three months of backdating is allowed would look like this: 

 

Backdating Rates

Sample of Rate Backdating

 

Rate information in database

Rate Database Samples

 

 

Example Two: Only One Set of Rates is Open for BaseRates 

Re-price a product where the old rates are no longer used from a certain date forward, and both old and new policies use a set of rates from that given date.  

 

Mapping it Out

Line one is used from RateDescription=BaseRates where policies have an EffectiveDate from 1/1/2000 (inclusive) forward but only for activities with effective dates between 1/1/2000 (inclusive) and 12/31/2003 (inclusive).

Line two is used from RateDescription=BaseRates where policies have an EffectiveDate from 1/1/2000 (inclusive) forward but only for activities with effective dates on or after 1/1/2004.

 

Map out base rate change

Sample of Rate Backdating

 

Repricing information in database

Rate Database Samples

 

 

 

Copyright © 2009, 2011, Oracle and/or its affiliates. All rights reserved. Legal Notices