'Report' shows incorrect duration data when the schedule options like 'This fiscal year' or 'Last Fiscal Year' is usedIssue Graphical representation of the data shows incorrect Date range on the report when the 'This fiscal year' option is used.ReleaseAny VersionCauseIncorrect date format either on 'Start'/'End' fields on 'fiscal_period' tableResolution Run the below fix script to set the date format correctly to OOTB. /* fix script. */var gr = new GlideRecord('fiscal_period');gr.query()while(gr.next()){var gdt = new GlideDateTime();gdt.setValue(gr.start);gs.info('-------------------');gs.info(gr.start);var date = gdt.getDate().getByFormat('yyyy-dd-MM');var time = gdt.getTime().getByFormat('HH:mm:ss');gs.info(date+ ' '+ time )gs.info('-------------------');gr.setValue('start',date+ ' '+ time )gr.update()} The above script corrects the custom date format on the 'Start' date field. Actually, the 'This Fiscal year' option uses the date range as per the 'Start/ / 'End date fields and if the format goes wrong, report fails to get the correct date range.