The steps below need to be completed according to whether you use Oracle or SQL Server in order to get updates to a View and a Trigger related to the new Incident Review tool. This only has to be done once, so if you completed it at 10.6.1a, you don't have to complete it again at 10.6.1b.
For Oracle:
To update the View the following steps need to be performed:
Open the oracle database in Oracle SQL Developer.
Connect to your Responder database.
Open Views.
Right-click RX_INCIDENTS_VIEW then click edit.
Add ir."USER_REVIEWED" after ir."VOLTAGE"
Click Test Query to ensure the query is successful.
Click OK.
To update the Trigger the following steps need to be performed:
Open Triggers.
Right click RX_INCIDENTS_TRG and click Edit.
Add user_reviewed after voltage in each of the insert statements. Insert :new.user_reviewed in the ‘INSERT’ and ‘UPDATE’ value statements. Insert :old.user_reviewed in the ‘DELETE’ value statement.
For SQL Server:
Open the database using Microsoft SQL Server Management Studios.
Navigate to Tables and open RX_INCIDENTS table.
Open the triggers folder under the RX_INCIDENTS table.
Right-click rx_incidents_trg and click modify.
Insert user_reviewed column to the insert and select statement for the insert trigger.
Insert the user_reviewed column to the insert and select statement for the delete trigger.
Insert the user_reviewed column to the insert and select statement for the update trigger.