1 Answers
NOTE: For local installation only
In some cases when operation on the admin setting is done by one of the users we need a way to identify that change that was made by Admin users on the system settings. The Orcanos system is logging according to the CFR 21 Part 11 most of the admin operations into a special table that is available only to the system admin.
Please follow these steps in order to check the Admin history change log :
1. Open your Database
2. Under admin > History table, You can search for the change
3. Run the query for
SELECT TOP 1000 [ID] ,[Time_done] ,[Original_value] ,[New_value] ,[Action_type] ,[Change_by_PC] ,[Change_by_IP] ,[Change_by_User] FROM [servername].[dbo].[SYS_HISTORY_ADMIN] order by id desc4. Searching for theĀ Original Value
You can check the all values here which have been changed or not.
NOTE: will be available in the admin in future releases.