KpiHHH Property
General info
Label |
High High High Limit |
Description |
Limit value for the KPI which is used in KPI status calculations. |
Data type |
Double |
Type |
Regular |
Code |
927 |
Symbolic name |
MODEL_PROP_KPIHHH |
Lua access code |
syslib.model.properties.KpiHHH |
Available since |
1.0 |
- Parent properties
Attributes
| Name | Tooltip |
|---|---|
| PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs. |
| PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs. |
| PROP_NULLABLE | This Property can have no value. |
Capabilities
| Name | Description |
|---|---|
| DataHistorization | The user will be able to switch time-series historization for this property on |
Examples
Read from or write to the KpiHHH property.
-- Read from the KpiHHH
syslib.getvalue("<OBJECT FULL PATH>.KpiLimits.KpiHHH")
-- Write to the KpiHHH
syslib.setvalue("<OBJECT FULL PATH>.KpiLimits.KpiHHH", VALUE)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the KpiHHH
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.KpiLimits.KpiHHH"));
// Write to the KpiHHH
Result result = sli.WriteValue(sc, new WriteItem(VALUE, "<OBJECT FULL PATH>.KpiLimits.KpiHHH"));