Search found 42 matches

by sindrapal
Fri Jan 24, 2014 2:59 pm
Forum: Integration Development
Topic: Transaction Apply Towards
Replies: 2
Views: 496

Re: Transaction Apply Towards

Yes, you would use the Splits property on the Transaction to get\set the Transaction Apply Towards information. ITransactionsManager txMgr = sps.GetService<ITransactionsManager>(); ITransaction tx = txMgr.NewTransaction<IReceiptTransaction>(ledgerInfo); // Setting the Unapplied amount ITransactionSp...
by sindrapal
Thu Jan 23, 2014 3:31 pm
Forum: Integration Development
Topic: Error trying to create a new transaction
Replies: 3
Views: 622

Re: Error trying to create a new transaction

Brain,

Please use a specific Transaction type for the type argument.

ITransactionsManager txMgr = sps.GetService<ITransactionsManager>();
ITransaction tx = txMgr.NewTransaction<IReceiptTransaction>(ledgerInfo);