Care to be taken while using reference field on record producer and its related taks based tableSummaryWhen creating a Record Producer type catalog item, a few fields apart from fields existing on the related table(task based table) may be added or deleted in a few scenarios. There might be cases where a reference field is present both on the task based table and on the record producer as well. Conditions to be provided on field of the record producer and the task based table may remain the same but the usage(writing the condition) would differ, which is not usually noted and the same exact condition would be used on both the tables and it would not work.ReleaseAllInstructionsWriting conditions on reference fields on record producer and task based table would slightly differ. Catalog item uses 'variables' or 'variable' which would not be present on task based tables or any table except catalog items. Ex: A reference field on record producer 'ABC' would refer to a field 'XYZ', this condition can be written as follows :javascript:'abc='+current.variables.xyz; But the same cannot be used on the task based table as 'variable' or 'variables' would not be present on any table. This can be re-written as below, using advanced reference qualifiers on the dictionary entry of the respective table: javascript:'abc='+current.xyz; 'current' can be used as ACLs are server side scripts but use of 'variables' needs to be eliminated as this would not make the reference qualifier work.