Forum Replies Created
-
AuthorPosts
-
MikhailModeratorIt is a good idea to implement event section of Elastic Report.
January 2, 2018 at 7:45 am in reply to: Comparing the previous value of channel with the current value of same channel #3002
MikhailModeratorHi,
If you need to save a time when value is maximum, you need additional channel and more complex formula. Something like that:
double GetMax(int timeCnl) { if (Val() > Cnl) { return Val(); } else { SetVal(timeCnl, EncodeDate(DateTime.Now)); return Cnl; } }You should read about Elastic Report: http://doc.rapidscada.net/content/en/modules/plg-elastic-report.html
The demo is here http://demo.rapidscada.net/plugins/ElasticReport/ElasticRep.aspx?reportID=101In case of questions about Elastic Report, create a new topic.
MikhailModeratorYou wrote “when adding it to the Server”.
But you should not add it to the Server. Please provide screenshots.
MikhailModeratorKpTelegram.dll must be put into C:\SCADA\ScadaComm\KP
This is a library for Communicator.
Did you copy the DLL there?
MikhailModeratorDo you mean that error is the same after unblock?
Please provide a screenshot.
MikhailModeratorHi,
Elastic Report doesn’t work with events. It works with data archive.
MikhailModeratorI had edit link but it disappeared after few minutes.
The forum engine works so.
MikhailModeratorHi,
If you download Rapid SCADA 5.5.0 before the 26 of December:
“There were 2 outdated files in the package: PlgScheme.dll, ScadaSchemeCommon.dll. The issue is now fixed. Download the distributive again and update these files.”
It was written here.If it doesn’t help, press F12 in browser and make a screenshot of errors in the Console tab.
I would like to merge and edit my post, is it possible?
Do you have the Edit link above your post?
December 29, 2017 at 7:19 am in reply to: "CreateDaSubscr()" method in "KpOpcLogic.cs" can't get value. #2983
MikhailModeratorBy default the service works as system user. You can change a user in the properties of the service.
December 29, 2017 at 7:19 am in reply to: "CreateDaSubscr()" method in "KpOpcLogic.cs" can't get value. #2982
MikhailModeratorHello,
The service and the GIU works as different Windows users with different privileges. You can check user names in Task Manager. This is important when use OPC.December 25, 2017 at 12:18 pm in reply to: Comparing the previous value of channel with the current value of same channel #2977
MikhailModeratorHi,
You should create an input channel of Calculated Discrete type for each bit and use the formula GetBit for these channels
Example: GetBit(Val(101), 1) – gets 1st bit from channel 101
MikhailModeratorHi,
First of all, remove the existing installation of Rapid SCADA.
Open Windows features list and check the required options needed for the web app, see images at http://doc.rapidscada.net/content/en/installation-and-run/software-installation.html
MikhailModeratorHi,
Login behavior will be improved in the next version of Rapid SCADA. You should try it when the new version will be published.
MikhailModeratorHi,
Change the fore color to “Status”. The color of the component will reflect channel status. -
AuthorPosts