Skip to main content
InSource Solutions

TN AppSvr302 How to Save the Change Log of an Application Object in Wonderware Application Server

Count5.JPGInSource_Logo_Transparent (1).png

 

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.

1.png

 

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.

2.png

The change log will be display is can be saved as a .csv file.

3.png