Overview
You want to update/adjust the From Date
and/or To Date
for a Product Code in Rate Index Range Maintenance.
Solution
Open a Support ticket specifying the Product Code, the current From Date
and/or To Date
shown in the CSR portal under Administration Menu > General > Rate Index Range Maintenance
and the date to which the respective date/s should be modified.
In case there are multiple same From Date
s and/or To Date
s for the product, also provide a screenshot from the CSR portal specifying exactly which entry needs to be modified.
Support will get back to you once the update is complete.
<supportagent>
Access to the Jump server is required to perform the below update steps:
- Login to the Jump server 10.185.40.141.
- Open Microsoft SSMS and connect to
aes.cons.com
. - Select
New Query
in the top bar. - Find the
RateIndexTypeId
:
use <client_specific_database>;
select RateIndexTypeId from RateIndexType where RateIndexType='<Product Code>'; - Find the
RateIndexRangeId
:use <client_specific_database>;
select * from RateIndexRange where RateIndexTypeId=<Found from previous step>; - Find the record with the
From Date
and/orTo Date
that the customer has mentioned and update it. If required, skip theDateFrom
orDateTo
parameters in the below query as per the client's requirements:use <client_specific_database>;
update RateIndexRange set DateFrom="YYYY-MM-DD 00:00:00.000", DateTo="YYYY-MM-DD 00:00:00.000" where RateIndexRangeId=<Found from previous step corresponding to what the client has requested the update for>
Inform the client that the requested date/s has/have been updated.
</supportagent>
Priyanka Bhotika
Comments