Overview
You want assistance with the update of the rate and/or blend ratio/percentage of a Rate Package.
Solution
Open a Support request with the below information:
- The Rate Package Name
- What needs to be updated for that Rate Package - Rate and/or Blend percentage
- The updated value/s for the information (rate and/or blend percentage) that needs to be updated
Support will inform you once the updates have been made.
<supportagent>
You should have access to the Jump server for performing the below 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 Rate Package's
RateID
:use <Client specific Database>;
If the client has provided the Product Code, you can find the RateID as follows:
select RateID from rate
where ratecode = '<Rate Code/Rate Package Name provided by the client>'use <Client specific Database>;
select RateID,* from Product
where ProductCode like '%<Product Code provided>%' - Get the current rate details:
use <Client specific Database>;
If the client has requested the rate amount to be updated and has provided the current value, locate the RateID for the record with the provided current value.
select RateDetID, RateAmt, RateAmt2
from ratedetail
where RateId = <Found from the results of the previous query> - Update the Rate and/or Blend percentage as per the client's requirements:
-
Update only Rate:
use <Client specific Database>;
update ratedetail
set rateamt = '<rate provided by client>'
where ratedetid = <Found from the results of the query in step 5> -
Update only Blend %:
use <Client specific Database>;
update ratedetail
set rateamt2 = '<blend % provided by client>'
where ratedetid = <Found from the results of the query in step 5> -
Update both - Rate and the Blend %:
use <Client specific Database>;
update ratedetail
set rateamt = '<rate provided by client>',
rateamt2 = '<blend % provided by client>'
where ratedetid = <Found from the results of the query in step 4>
-
Update only Rate:
Testing
You can run the same query as in step 5 to confirm that the update has gone through as expected.
Inform the client that the update has been completed.
</supportagent>
Priyanka Bhotika
Comments