Overview
Customers may want to cancel a renewal for a multitude of reasons, such as having made duplicate renewals or because they want to renew to a different plan/product.
Information
Create a support ticket and share the UCID of the customer, along with details about the renewal they want to cancel. Details such as the date on which they renewed and the name of the plan/product would be very helpful in locating and removing the renewal information against the customer's account.
<supportagent>
Follow the sequence of SQL statements below to locate the relevant RateDetail
& RateTransition
entries and delete them.
-
select CustID from Customer where CustNo = '<UCID shared by client>'
-
select * from RateTransition where CustID = <CustID as obtained from the above query>
Find the row in the resultset of the above query with aSoldDate
matching the renewal date the client has requested to be cancelled. Note down theRateTransitionID
for the corresponding row. -
select * from RateDetail where RateTransitionID = <RateTransitionID as obtained from the above query>
- Once the rows in
RateDetail
are located, proceed to delete them withdelete from RateDetail where RateTransitionID = <RateTransitionID as obtained from the above query>
- And then delete the
RateTransition
rows with, using the relevant RateTransitionIDsdelete from RateTransition where RateTransitionID = <RateTransitionID as obtained from the above query>
</supportagent>
Priyanka Bhotika
Comments