Why user unable to save advanced reference qualifier modification in sys_dictionary entry?Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When an user was trying to modify the simple reference qualifier to advanced reference qualifier in sys_dictionary entry, system was not allowing to save the modification, upon save button click, system automatically reverts the reference qualifier back to simple. Lets consider an out of the box provided reference field which uses simple reference qualifier, for example, "assignment_group" field on task table is an out of the box provided reference field which uses simple reference qualifier as shown in below screenshot, Let's change this simple reference qualifier on "assignment_group" field to "advanced" with the reference qualifier as, "new EscalationReferenceQualifer().getAssignmentGroup();" Where EscalationReferenceQualifer is a script include, and getAssignmentGroup is a function within the script include as shown in the below screenshot, Upon saving the above updated "assignment_group" sys_dictionary entry, system just simply reverts the reference qualifier back to simple and doesn't save the changes. Release Any supported release. Cause As per the Javascript calls document, the advanced reference qualifier which invokes scripts should be prefixed with "javascript:" string, if not system just simply aborts the update transaction. This validation is being done on the system via an out of the box provided update business rule "Reference Qualifier Value"("sys_script.do?sys_id=7c4072105f220100a9ad2572f2b47750") on sys_dictionary table as shown below, Resolution For the advanced reference qualifier with scripts, make sure, reference qualifier is always prefixed with string "javascript:" as shown below, javascript: new EscalationReferenceQualifer().getAssignmentGroup(); Additional Information Reference Qualifier Advanced Reference Qualifier example System Dictionary