TN AppSvr302 How to Save the Change Log of an Application Object in Wonderware Application Server
Description
This article from InSource shows How to Save the Change Log of an Application Object in Wonderware Application Server.
- Author: Benjamin Davis
- Published: 06/16/2018
- Applies to: Application Server
Details
While it is possible to view the change log of an Application Object inside of the IDE, it is not possible to save the change log.
One method to saving the change log of an application object is to use the following query in SQL Management Studio.
SELECT change_date, Tag_name, User_Comment
FROM internal_common_obj
inner join gobject_change_log ON internal_common_obj.gobject_id = gobject_change_log.gobject_id
WHERE tag_name like 'ObjectName'
Change ObjectName to the actual name of the object.
The change log will be display is can be saved as a .csv file.