Title
Audible Alarms do not work in PowerSCADA Expert 7.30 Web Client
Issue
When an alarm occurs in PSE 7.3, it has no sound when triggered even though it is configured as an audible alarm.
Product Line
PowerSCADA Expert 7.3
PowerSCADA Expert 7.3 SR1
Environment
PowerSCADA Expert 7.3 Web Client
Cause
There is an issue in the cicode files (PLSOEM.ci and TabAlarmSnd.ci) of the PLS_Include project which restricts this feature from working in the Web Client.
Resolution
Manually modify the PLSOEM.ci and TabAlarmSnd.ci cicode files using the following steps to allow audible alarms in the web client.
These cicode files can be found in "C:\ProgramData\Schneider Electric\PowerSCADA Expert 7.30\User\PLS_Include" or by expanding PLS_Include then selecting Cicode Files in Citect Explorer.
- Open PLSOEM.ci in the PLS_Include project.
- Change _OEM_Startup() function by removing PLSAlmSound_Startup(); and replacing with TabAlarmSnd_Start();
- Save and close PLSEOEM.ci
- Open TabAlarmSnd.ci
- Change _TabAlarmSnd_CheckAlarm() function by adding the following just after priority = AlarmActive(2);
IF AlarmActive(1) = 0 THEN
priority = -1;
END
Save and Close
After making the changes listed above, recompile the project. (Be sure to recompile with the "Incremental Compile" checkbox unchecked in Project Editor > Tools > Options)
Audible Alarms do not work in PowerSCADA Expert 7.30 Web Client
Issue
When an alarm occurs in PSE 7.3, it has no sound when triggered even though it is configured as an audible alarm.
Product Line
PowerSCADA Expert 7.3
PowerSCADA Expert 7.3 SR1
Environment
PowerSCADA Expert 7.3 Web Client
Cause
There is an issue in the cicode files (PLSOEM.ci and TabAlarmSnd.ci) of the PLS_Include project which restricts this feature from working in the Web Client.
Resolution
Manually modify the PLSOEM.ci and TabAlarmSnd.ci cicode files using the following steps to allow audible alarms in the web client.
These cicode files can be found in "C:\ProgramData\Schneider Electric\PowerSCADA Expert 7.30\User\PLS_Include" or by expanding PLS_Include then selecting Cicode Files in Citect Explorer.
- Open PLSOEM.ci in the PLS_Include project.
- Change _OEM_Startup() function by removing PLSAlmSound_Startup(); and replacing with TabAlarmSnd_Start();
- Save and close PLSEOEM.ci
- Open TabAlarmSnd.ci
- Change _TabAlarmSnd_CheckAlarm() function by adding the following just after priority = AlarmActive(2);
IF AlarmActive(1) = 0 THEN
priority = -1;
END
Save and Close
After making the changes listed above, recompile the project. (Be sure to recompile with the "Incremental Compile" checkbox unchecked in Project Editor > Tools > Options)