Hi Dojo,
I've been trying to use
protocol.FillArray(Parameter.Acgroups.tablePid, rows, NotifyProtocol.SaveOption.Full);
however nothing seems to happen. There are no errors or exceptions, rows is a List<object[]> and I have verified that it's not empty. Table itself uses type="retrieved". I'm not sure where to look at next, is there any reason why this call might "fail" silently or why it might "succeed" without results? Also how might I use the object returned by this method to analyse the result?
Hi Edib,
Building upon João’s earlier explanation: when you use the protocol.FillArray(…) call, it executes notify type 193. This action results in returning an object, which indicates whether the update was successful or not.
For more in-depth details, you can refer to the documentation here: https://docs.dataminer.services/develop/api/NotifyTypes/NT_FILL_ARRAY.html.
If you have any questions or need further clarification, please feel free to reach out.
Hi Tiago,
ah, I always went straight to the wrappers, but it does make so much more sense to read about underlying notify. Thanks, I’ll try to make better use of notifys docs.