How to remove FiTxnId
How would I remove(delete) a FiTxnID for a particular protocol from an existing transaction?
The id was set using
txn.setFiTxnId(1234,"value")
Thanks
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
1 Posted by Stuart Beesley ... on 17 Sep, 2022 09:26 PM
txn.setFiTxnId(1234, None) (or null for Java)
or
txn.setParameter("ol_fitid_1234", None)
or
txn.removeParameter("ol_fitid_1234")
to find the parameter, right-click the txn, show transaction details... Look for
"ol_fitid_" and the number on the end - e.g. ol_fitid_1234
2 Posted by Bob B on 18 Sep, 2022 05:17 PM
Thanks very much. I appreciate the info.
Maddy closed this discussion on 21 Sep, 2022 03:41 PM.