Understanding Unsupported Cron Expression Features in CronExpValidatorSummary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } This article explains error scenarios you might encounter when using Cron expressions with the CronExpValidator. Unsupported Features The CronExpValidator currently has limitations in parsing certain Cron expression features due to its parser implementation. These unsupported features include: L (Last): This symbol allows specifying the "last" day of a week or month within the expression.# (Nth): This symbol is used to define the "Nth" weekday (e.g., third Friday) within the expression.W (Week): This symbol is used in combination with # to specify the weekday within a month (e.g., "#W" for the first weekday of a month). Error Messages and Code References If your Cron expression contains any of these unsupported features, the CronExpValidator will throw an error. Here's how to identify these errors: Comments: The code includes comments at specific lines mentioning the unsupported features: Line 123: //our go parser is not supporting L/# (indicates L and # are not supported)Line 238: //our go parser is not supporting L W (indicates L and W are not supported together) Error Messages: The error messages themselves might provide clues about the unsupported feature causing the issue. You might see references to error codes like: this.ERROR_MSGES.DAY_OF_WEEK_ERROR_MSG_2 (potential weekday parsing error)this.ERROR_MSGES.DAY_OF_MONTH_ERROR_MSG_1 (potential day-of-month parsing error) Solution Since the problematic expressions all involve L or #, and these features are currently unsupported, the recommended approach is to modify your Cron expressions to avoid using them. Additional Considerations If possible, explore alternative ways to achieve your desired scheduling behavior without relying on the unsupported features. Scheduling libraries or cron expression generators might offer workarounds. By understanding these limitations and following the recommended solution, you can avoid errors and ensure your Cron expressions work as expected with the CronExpValidator. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } All