When attempting to use the Manage Rota screen action Schedule Time Off, a red bar with no error text appearsIssue <!-- div.margin{ padding: 10px 40px 5px 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: 8px; border-collapse: separate; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> In on-call scheduling, users might not be able to schedule time off for themselves or others. A red banner without text is displayed on the form.ReleaseAll releases.CauseAn invalid Schedule record is referenced in the User record.ResolutionThis behaviour might be due to an invalid reference to a Schedule record that does not exist in the instance. From the sys_user record, add the 'Schedule' field to the form, the field would display as blank. However, viewing the XML for the sys_user record, the 'shedule' field might look like this: <schedule display_value="">52f2b95c6fed4700188909c54b3ee4ce</schedule> A search for this record in the cmn_schedule table would show that this record does not exist. This explains the warning message. The record might have been deleted at some point or it was not moved across from another instance, while the user record is still referencing this record. I Updating this field to point to an existing cmn_schedule record would solve the issue.