In some applications, it is useful to know when a repository item was last modified most recently. You can set up a special property to store the last-modified time of a repository item. To configure a last-modified property:

The item descriptor might look like this:

<item-descriptor name="article" last-modified-property="lastActivity">
  <attribute name="updateLastModified" value="true"/>
<table name=ARTICLES type="primary" ...>
  <property name="lastActivity" data-type="timestamp"/>
...
</table>
</item-descriptor>

When items of this type are added or updated, the lastActivity property is updated with the current time.

 
loading table of contents...