Hi Dojo,
I will need to set value to column write parameter from automation script. In my case I have read/write column parameters and write parameter use snmpSetAndGet.
<Param id="504" trending="true"> --> Read column parameter
<Param id="505" snmpSetAndGet="row;executeNext"> --> Write column parameter
I will need to set 505 parameter from automation script but I didn't found any method that can do set on write parameter. Is there any solution for this case without creating more logic on protocol side which will do snmp set via QAction?
Hi Dario,
In your automation script, you can create IDmsElement object. From that object, you can do following:
where element is of IDmsElement type, WriteParameterId is int and value is of type WriteParameterType.
Let me know if this helps 😀
____
Edit:
In case of table, you can do following:
T and parameterValue must be of same type


sorry, my bad.
I have updated main comment bc of picture delivery

No problem, I think SetValue() method will set only read cell parameter, not write. So, if we need to do action on write cell parameter (like SNMP set) it will not be sent to device itself.
Thank you Rijad, this will work for standalone parameters. In my case, I need to set column write parameter and GetStandaloneParameter method will not work.