Hello, I am encountering an issue where the display of SNMP number parameter is negative even though the value coming from the device is positive. After some investigation I believe it is because the value coming from the device exceeds the max value of Int32 and when Dataminer tries to cast that number as an Int32, it wraps around and becomes negative due to the way binary representation works. The type in the SNMP tag is indeed counter64, which should take any number from 0 to 2^64-1, which also troubling that it still seems to treat the value as an Int32. Is there any possible solution to this? There is the possibility of having a custom column for each of the columns that can possibly take an Int64 number, do the conversion in a Qaction, and set/display the custom column. This would not be an ideal solution, as I would have to create x number of columns for x number of tables where this can possibly happen, and would only do this as a last resort.
Side note: I ran a simulation on my local DMA and the table was not able to poll when the value coming was Int64
Values seen by the customer:
Incoming value from device: 3,777,560,910
Value displayed on Dataminer: -299,812,032