Questions tagged [ignition]

Ignition is an industrial software platform built for HMI, SCADA and MES applications developed by Inductive Automation. Use this tag to ask specifically on the use of Ignition software to build the mentioned applications.

Ignition is an industrial software platform built for HMI, SCADA and MES applications developed by Inductive Automation (https://inductiveautomation.com/).

Use this tag to ask specifically on the use of Ignition software to build the mentioned applications.

69 questions
0
votes
1 answer

How to Change Value to Text in Table Component

Using Ignition's Table Component, when I get a value > 0, returned from my query, I want the column "Action" to display the text "Hold". If the value of column "Action" is LEQ 0 then I want to display the text "Crash". Anybody know how? What I'm…
PaulMc
  • 109
  • 11
0
votes
1 answer

jxbrowser in jython document.findElement not working

i am trying to create a simple script in jython that treis to work with a form i am declaring from java.awt import Robot from java.awt.event import KeyEvent as keyevent from com.teamdev.jxbrowser.chromium.dom import DOMDocument from…
0
votes
1 answer

Query'd top 15 faults, need the accumulated downtime from another column

I'm currently trying to query up a list of the top 15 occurring faults on a PLC in the warehouse. I've gotten that part down: Select top 15 fault_number, fault_message, count(*) FaultCount from Faults_Stator where T_stamp> dateadd(hour, -18,…
dbanks
  • 3
  • 4
0
votes
1 answer

Ignition OPC UA connection fail

After a power outage, I had an error in the OPC-UA server on devices. Connecting Error: hide Details java.lang.Exception: Error during…
Marq91
  • 17
  • 5
0
votes
1 answer

How to avoid parameter reference/substitution in tags and UDT

I would like to put a short JSON string in a memory tag but am getting an error: "Error expanding potential parameter reference in tag" due to the { in the JSON initiating parameter substitution. I've tried a few simple escapes such as \{, \\{ and…
davs2rt
  • 536
  • 4
  • 13
-1
votes
1 answer

I need to make an Ignition Communication with a Database

So I need to make an Ignition communication with a database. Used Ignition before, I already have a functional database. Created in MySQL and in Ignition, works perfectly, status valid. Now I've made another database, same IP, same port, different…
-1
votes
1 answer

Conversion failed when converting the varchar value '43302001-8' to data type int

When I try to execute the following: DECLARE @sqlText nvarchar(1000); SET @sqlText = N'SELECT TOP ' + CAST((:intValue) AS VARCHAR(20)) + 't_stamp, PART_NUM, ' + :Column + ' FROM dbo.press_7_recipes_log WHERE PART_NUM = ' + CAST(:text AS…
-1
votes
1 answer

while executing Alter query I am getting this error

ALTER TABLE TRN_Testdata ADD ":columnName" varchar(50) null; I am getting this error: at com.inductiveautomation.ignition.client.gateway_interface.GatewayInterface.newGatewayException(GatewayInterface.java:339) at…
Samson
  • 1
-1
votes
1 answer

MySQL 3 Table Union and running SUM of one Column

Here is an example of a Table Component I am trying to create. Here is the Query I am currently attempting (unsuccessfully). The three tables are wp_ko, rack and bt_runin. The problem I am having is the with the SUM of the column labeled "Result". …
PaulMc
  • 109
  • 11
1 2 3 4
5