Program tasks move to Work in progress at the same timeIssue We have two or more program tasks with the same planned start date and without being started. When we move the first one to Work in progress, all of the rest move to the same state and it should not be working this way because program tasks should be independent from each otherReleaseXanadu P7CauseOOB Business Rules :- Process State Change [Table : pm_program]- Process State Change [Table : pm_program_task]/now/nav/ui/classic/params/target/sys_script_list.do%3Fsysparm_query%3Dsys_idSTARTSWITH543eff4393130200ea933007f67ffb66%255EORsys_idSTARTSWITHd103ef0393130200ea933007f67ffb70%26sysparm_first_row%3D1%26sysparm_view%3D OOB script include : ''Program'' which sets the state of the program task to in progressvar pgmTaskStateUtil = new PlannedTaskStateUtil(pgmTask);var inProgressState = pgmTaskStateUtil.getDefaultWorkState();while(pgmTasks.next()){if(pgmTasks.state != inProgressState){pgmTasks.setValue('state', inProgressState);pgmTasks.update();}}ResolutionI reproduced the issue OOTB on Yokohama and confirmed that the following executed when the issue occurred. Opened PRB : "PRB1892349" to address this issue.