In a protocol, you can use the notify 220 to set column(s) on a table in one call.
Is there a similar way to do this in an Automation script? Or is the only option to use element.SetParameterByPrimaryKey() multiple times?
A workaround would be to adapt the driver to receive the command from the script and do the Setcolumns command via the protocol, but that's not desirable.
The notify protocol 220 isn't available from an Automation script. However the notify protocol 336 NT_FILL_ARRAY_WITH_COLUMN_ONLY_UPDATES is available first argument needs to be an object[] 0. DMAID 1. EID 2. PID (table or column PID) and for the second argument the same data that would be passed on in a notify call from a QAction
it works! Thanks