Error "Invalid 'Field Label' record even though the selected outside Table '<....>' is allowed." while trying to change field labelIssue The customer can report facing an issue where the customer can face the error "Invalid 'Field Label' record even though the selected outside Table '<....>' is allowed" , while trying to manually change the label of any element.ReleaseNot release specificCauseThe "Invalid 'Field Label' record even though the selected outside Table '...' is allowed" error in ServiceNow typically arises when you're trying to modify a field label that's inherited from a parent table, and you're not creating a new record for the label within the child table's application scope. This means you're trying to directly edit the label in the parent table, which isn't allowed for child tables. In simpler terms, the scope of the sys_dictionary record and the corresponding sys_documentation records are different. Due to this, the labels are not getting modified. ResolutionTo correct this issue, you can follow the steps below: -- Open the related sys_dictionary record for the field label to be modified.-- Open the XML record for sys_dictionary and review the sys_scope value (application scope) for the dictionary record.-- From the related list - "labels" of the record, open the corresponding label. -- Open the XML of the label record, edit the XML to reflect the correct scope similar to that of the dictionary record. For example, change <sys_scope display_value="Global">global</sys_scope>tosys_scope display_value="Customer Service">sysid</sys_scope>-- Save the XML locally. -- Import the XML back, and the correct scope will be reflected. -- Once the scope is changed, you can manually edit the label value (this can be captured in a local update set)