Forum Replies Created
-
AuthorPosts
-
manjey73ParticipantIt seems to me that this is impossible. Most likely, this is how the regular table plugin works. Which can show columns of the selected time period only for one day, while reading archives only from the Sentinel.
That is, in principle, he will not be able to make 30 or 31 columns based on the number of days in the current month. (or 28, 29 if the month is February)
manjey73ParticipantThe project is not downloading. It leads nowhere. Can you put it on some kind of Google drive and give it a link?
manjey73ParticipantThe server is running in UTC time, your time corresponds to UTC, maybe that’s the reason?
Can you upload a primitive project with settings?.sometimes I don’t understand how it works either, I have to constantly calculate the time in my head 🙂
manjey73ParticipantShare the table settings, how did you create the column in just one day?
It’s interesting to try. Perhaps the regular tables plugin itself can’t do this and you need another plugin?
manjey73ParticipantIt’s not entirely clear what you want. Should I write the amount for that day in the cell of the Daily Database, or just the current value of the specified day?
manjey73ParticipantIIS runtime support (ASP.NET Core Module v2) Check that the module is installed
You need a Hosting Bundle
and
.NET Runtime 8.0.11
manjey73ParticipantDo you have the version 2 module for IIS installed?
Well, you have installed the necessary component for the WEB from ASP.NET ?
manjey73ParticipantThe administrator account allows you to send commands and sees all the views.
manjey73Participantin version 6, you don’t need to write /scada
or just localhost or specifying the default port 10008
manjey73ParticipantDo I set up autologin in the SacadWeb instance settings?
manjey73ParticipantBy default, the table takes data from a minute archive, perhaps choosing an archive will help in this case.
You also need to set up Graph calls for this archive.
-
This reply was modified 1 year, 8 months ago by
manjey73.
January 7, 2025 at 8:54 am in reply to: How to know the network connection status of a device #15929
manjey73ParticipantSorry – For the Divice – service Tag code – Status
January 7, 2025 at 6:28 am in reply to: How to know the network connection status of a device #15926
manjey73ParticipantFor the user, this is the service code of the tag – Status
Create a channel with this tag code.Where the value 0 = Normal, 1 = Error
There is no equivalent for Communication Lines in the current version yet, if I’m not mistaken.
manjey73ParticipantJust create your own formula in the script table, in which you can initialize any variables.
I was doing something similar to version 5 to simulate non-volatile variables through files.
In a simple version, it looks like thisbool initVal = false; public double InitValues() { if (!initVal) { SetData(1153, 0, 1); SetData(1154, 0, 1); SetData(1155, 0, 1); SetVal(1031, 0); SetVal(1032, 1); initVal = true; } return Convert.ToDouble(initVal); }And most importantly, place the channel with the call of this formula at the very first in the channel database.
Moreover, the formulas in the channels themselves can be any.
manjey73ParticipantI checked, there are no errors during compilation, but it seems to me that you are trying to use an internal formula even before the server starts processing formula data. Most likely InitScripts is intended for other things.
-
This reply was modified 1 year, 8 months ago by
-
AuthorPosts