Configure System Parameters > Configure Capacity Chargeback Logging
  
Version 10.1.00
Configure Capacity Chargeback Logging
A system parameter can be configured to enable or disable capacity chargeback logging. This allows data to be collected and then custom report templates developed with one of the report template designers can query this data to generate chargeback reports.
Beginning with APTARE StorageConsole 9, capacity chargeback logging is enabled by default. If this is not a requirement for your environment, disable it using the following steps.
1. Log in to the Portal Server as user aptare.
2. Type the following command:
sqlplus portal/<portal_password>
3. To disable Chargeback Logging in the system parameters.
 
UPDATE ptl_system_parameter set param_value=0 WHERE param_name='CHARGEBACK_LOG_IS_ENABLED';
commit;
 
4. To enable Chargeback Logging in the system parameters.
 
UPDATE ptl_system_parameter set param_value=1 WHERE param_name='CHARGEBACK_LOG_IS_ENABLED';
commit;