I created a new class called Breaker as part of the Device/Electrical device, so by setting the breaker’s Service status to Not operative, this event isn’t reflected in the CI calendar change. Where should I check the configuration to reflect this change, from operative to inoperative?
Thank you for your feedback.
We investigated the issue and found that the functionality responsible for automatically generating the calendar configuration for new classes is not being created as expected.
You can resolve the issue by manually running the following SQL script on your database for any of the new classes, which will create the missing configuration.
This behavior will be fixed in the next openMAINT release.
Thank you again for your contribution.
CREATE TRIGGER tt_class_change_to_calendarconfig
AFTER INSERT OR UPDATE ON ‘“Breaker”’
FOR EACH ROW
EXECUTE PROCEDURE tt_class_change_to_calendarconfig();