PRB1367904: Additional Parameters to the Stack Param in URI_REFAfter PRB1367904 was fixed in Paris, additional parameters were appended to the URL(sys_created_on). This was done to reduce the number of rows that are being loaded after the record is updated. Let us say the URI_REF is for a sysapproval_approver record. Once you approve the sysapproval_approver record, it loads the entire sysapproval_approver table if there are no extra parameters. On the other hand, when you update an incident, the system loads the list of "active" incidents by default. To reduce the amount of rows that is being displayed after updating a record and minimize the loading time, we had to add a filter. If a table does not have the "active" field, "sys_created_on" will be appended to the URL. The sys_property "glide.email.outbound.target_table_stack_filter"(default is active,sys_created_on) works this way:1) We add only one valid field to the sys_param stack and we ignore rest of the fields that are specified in "glide.email.outbound.target_table_stack_filter" property.2) For incident table "active" field is valid and we don't add "sys_created_on" for the param stack.3) For sys_approval_approver table, "active" is not valid field and hence we add "sys_created_on" to param stack.(to load the records from just today)4) Let us say "glide.email.outbound.target_table_stack_filter" is set to "active,sys_created_on, sys_updated_by". In such case for sysapprocal_approver URI_REF we add only "sys_created_on" to the param stack and we ignore rest of the fields even though they are valid. It is impossible to use custom fields in that property. We support filtering either on "sys_created_on" or "active" fields, other fields will not be taken into consideration. This is how the system was designed and implemented. Moreover, you can revert back to pre-Paris behavior by changing the value of the 'glide.email.outbound.target_table_stack_filter' property from 'active,sys_created_on' (default) to 'active'. If you don't have this property, please, create it and set the value to 'active'.Below link may guide on how to create a system property:https://docs.servicenow.com/bundle/paris-platform-administration/page/administer/reference-pages/task/t_AddAPropertyUsingSysPropsList.html