Applies To Product(s): eB Web, eB Director Version(s): 16.3.1 Environment: N/A Area: Searching Subarea: Reports Original Author: Swapnil Tapadia, Bentley Technical Support Group Updated eQL to support Basic Audit properties In 16.3.1, we have enhanced the eQL and added some more Audit Properties into eQL to trace the details as well as change history of the object. Below is a list of new Audit fields that can be fetch in eQL: 1) AddedBy 2) ChangedBy 3) DateAdded 4) DateChanged 1) AddedBy:- By using it, you can trace who added the object into eB. You can see, Code/FirstName/Id/Initials/Surname of the person who added the object into system. For your reference you can see the below eQL: START WITH Document SELECT AddedBy.Code, AddedBy.FirstName, AddedBy.Id, AddedBy.Initial, AddedBy.Surname WHERE Code = 'Test_001' 2) ChangedBy:- If anyone changes any property of an Object, then you can trace it using "ChangedBy" field. You can see, Code/FirstName/Id/Initials/Surname of the person who changed the object in the system. For your reference you can see the below eQL: START WITH Document SELECT ChangedBy.Code, ChangedBy.FirstName, ChangedBy.Id, ChangedBy.Initial, ChangedBy.Surname WHERE Code = 'Test_001' 3) DateAdded :- As you can see the AddedBy, you can also trace the Date on which Object is added. We have DateAdded field now, which returns you the date on which object is added. For your reference you can see the below eQL: START WITH Document SELECT DateAdded WHERE Code = 'Test_001' It will return the date along with time on which object is added. 4) DateChanged:- As you can see the ChangedBy, you can also trace the Date on which Object is changed. We have DateChanged field now, which returns you the date on which object is Changed. For your reference you can see the below eQL: START WITH Document SELECT DateChanged WHERE Code = 'Test_001' It will return the date along with time on which object is changed.
↧