Transaction Number

I have transaction number as an argument, but it increments more than once in the workflow. I believe this is because I invoke setTransactionStatus in other xaml files, but I don’t know how to import the argument or transaction number without invoking setTransactionStatus.

Hi, one way you can stop the transaction number from getting incremented is by doing the following: Wherever it increments where it is not supposed to, you can use an assign activity to decrease the value by 1. (Transaction Number = Transaction Number - 1). You can do this immediately after calling the SetTransactionStatus xaml. Hope this helps!