Configure System Parameters > Configure Drive Capacity Chargeback Parameters
   
Version 9.1.01
Configure Drive Capacity Chargeback Parameters
When configuring Capacity Chargeback Policies, a Drive Capacity (GB) policy type can be defined. This value is treated as a range of capacity, with the default set to: plus or minus 10 GB. Often this default is not sufficient for an environment’s chargeback policies. Using system parameters, the range for the Drive Capacity policy type can be modified. The value configured in the policy will be treated as a range of values—that is, the Policy’s Drive Capacity plus or minus the Drive Capacity Range that is configured in the system parameters.
Use the following procedure to configure the Drive Capacity Range in the system parameters.
1. Log on to the Portal Server as user aptare.
2. Type the following command:
sqlplus portal/portal_password
3. The default value for this parameter is 10 GB. To find the current value of the Drive Capacity Range in the System Parameters:
SELECT NVL(param_value,0)
FROM ptl_system_parameter
WHERE param_name=’CB_DRIVE_CAPACITY_RANGE’;
4. Update the Drive Capacity Range in the System Parameters.
UPDATE ptl_system_parameter set param_value=100 WHERE param_name=’CB_DRIVE_CAPACITY_RANGE’;
commit;