Transaction equivalent of Get Object Count

I have a need of getting object counts from two tables in a transaction flow, before using these counts to do further transaction elements.

However, I cannot find an equivalent to the Get Object Count function under Transaction.

  • Should I instead just do a “normal” Load Data with eg. “Count(objectId) as numRows” in the Where clause?
  • And how do I read the actual response in the numRows attribute returned from the reference i get back?

Hello @Egil_Helland

Now, we do not have “Get Object Count” for transactions.
Yes, you can use “Count(objectId) as numRows” property.
My example:
But “Get Operation Reult Reference” work only in another operation

Regards

1 Like

Thanks Viktor, I should be able to infer from this what I need! :smiley: