gd.tracking

When enabled, adds 4 tracking columns to the grid table to know who and when a grid row has been added and/or updated.

Class

Grid

Property

gd.tracking

Formal specification

gd.tracking = true | false

Required

no

Default

no

Version

1.1

Comment

Following columns are added to the gridtable 

  • DT_CRE: Row creation date 

  • DT_UPD: Row last update date 

  • JIRA_USER_CRE: userid of user who created the row 

  • JIRA_USER_UPD: userid of user who updated the row 
    The tracking columns are added only when tracking is enabled. If the gridtable was already used prior the enablement of the tracking feature, 
    data (especially the create date and create user) will be null. 
    These tracking fields can be displayed in the grid using the col.xyz.name=<tracking field> property.

Example



gd.columns=auser, adate gd.tracking=true gd.tablename=qwerty # # Display the create date and author of the row in the grid # col.auser=User who created the row col.auser.name=JIRA_USER_CRE col.adate=Row Creation Date col.adate.name=DT_CRE



Reference

col.xyz.name=<tracking field>