GlideSchedule.isInSchedule and Schedule Entry type ExcludedIssue The output of the script is always 'False' for the 'Excluded' schedule entry type. Script: var glide = new GlideRecord('cmn_schedule');glide.get(<sys_id of the created Schedule> );var checkdate = new GlideDateTime('_DATE_');var sched = new GlideSchedule(glide.sys_id);sched.isInSchedule(checkdate);ReleaseRomeCauseExpected Behavior.ResolutionThe 'Excluded' schedule entry type and GlideSchedule.isInSchedule will always return false as this is Expected Behavior. It is recommended to change the Holiday to use any other schedule entry type or create your own 'Holiday' Type.