@VivekK16711353 To add an extra property (like caseid) to the FL audit table (FLAudit-Work-**) and populate it with the case ID (e.g., W-15066 from pxHistoryReference), you can create a Declare OnChange or Declare Trigger rule on the FLAudit-Work-** class. This rule will run whenever a new audit entry is created. Inside the activity or data transform, use string manipulation (e.g., @substring, @indexOf) or a regular expression function to extract the case ID from the pxHistoryReference value. Then set that extracted value to your custom caseid property. This way, every time a new row is added to the audit table, the caseid field gets automatically populated and is available for BIX extraction. Make sure the caseid property is exposed in the database schema if you want to query it efficiently.