Unable to find script manager for project

Hi,
I have a report that used to work, and no longer works. I don’t know what has changed.
The problem is a pie chart, its data is placed into a dataset with a script. The script doesn’t seem to run. Its the only script. This is the script.

header = ['mode','count']
pieDataset = []

CountMode1 = data['CountMode1']
CountMode2 = data['CountMode2']
CountMode5 = data['CountMode5']

pieDataset.append(['Manual',CountMode1])
pieDataset.append(['Temp On',CountMode2])
pieDataset.append(['ACE On',CountMode5])

pieDataset.append(['Manual',CountMode1])
pieDataset.append(['Temp On',CountMode2])
pieDataset.append(['ACE On',CountMode5])

pieDataset = system.dataset.toDataSet(header, pieDataset)
data['Pie Mode Counts'] = pieDataset

I get the warning Unable to find script manager for project.

Can anyone provide any suggestions?

Ignition version 7.9.10

So we figured out the cause and solution to this problem. The application had been disabled, thus the script wouldn’t run even though the report would run fine.
(Only visualization was intended to be disabled).

1 Like