Search found 42 matches

by sindrapal
Mon Dec 08, 2014 11:33 am
Forum: Integration Development
Topic: Notification of Fee Change
Replies: 2
Views: 618

Re: Notification of Fee Change

The other option is to subscribe to the FeeDetailChanged event notification. You get notified when a transaction is posted, voided, deleted, etc and also when you make a change to the order that affects revenue (ex. bill code changes). Here is a sample XML. Please let me know if you have any other q...
by sindrapal
Fri Nov 14, 2014 2:57 pm
Forum: Integration Development
Topic: Sample code for Anticipated (Incoming) Wires
Replies: 1
Views: 402

Re: Sample code for Anticipated (Incoming) Wires

Here you go. Please let me know if you have any questions. // Add an anticipated wire to an order related ledger ILedgersManager lm = _sps.GetService<ILedgersManager>(); // find the ledger ILedgerInfo info = lm.Ledgers .Where(l => l.Name == "TestLedger" && l.TrustAccount.Code == &q...
by sindrapal
Wed Oct 29, 2014 10:23 am
Forum: Integration Development
Topic: Cameron pfm.Contact to pt.Transaction relationship
Replies: 1
Views: 435

Re: Cameron pfm.Contact to pt.Transaction relationship

Brian, I am pasting a sample SQL query that gives you the contact's Reference Number when you are coming from the ProTrust side. Please let me know if you have any questions. select c.ReferenceNumber from pt.[Transaction] as t inner join pt.TransactionAttribute as ta on ta.ID = t.AttributeID inner j...
by sindrapal
Thu May 01, 2014 5:25 pm
Forum: Integration Development
Topic: Retrieving Check Info from the Select Database
Replies: 4
Views: 707

Re: Retrieving Check Info from the Select Database

Tim, I really apologize for the confusion. The code snippet I posted is intended for V3.0. It looks like you are actually going to V2.6. Unfortunately, you have to hit the database directly in V2.6 to get the check information you are looking for. You can use the following query to get all checks po...
by sindrapal
Thu May 01, 2014 10:56 am
Forum: Integration Development
Topic: Retrieving Check Info from the Select Database
Replies: 4
Views: 707

Re: Retrieving Check Info from the Select Database

Tim, I am posting a code snippet here that shows how you can accomplish this through our API. Please let me know if you have any other questions. NetworkCredential creds = new NetworkCredential("username", "password", "[SERVER]"); SelectServer selectServer = new SelectS...
by sindrapal
Wed Apr 30, 2014 10:33 am
Forum: Integration Development
Topic: Transaction (TrustAccountingDate and TransferToFromID)
Replies: 3
Views: 647

Re: Transaction (TrustAccountingDate and TransferToFromID)

Here you go, // Create a check transaction for an order related ledger ILedgersManager lm = _sps.GetService<ILedgersManager>(); // find the light weight ledger instance of the ledger ILedgerInfo ledgerInfo = lm .Ledgers .Where(l => l.Name == "TestLedger" && l.TrustAccount.Code == &...
by sindrapal
Tue Apr 22, 2014 3:36 pm
Forum: Integration Development
Topic: Transaction (TrustAccountingDate and TransferToFromID)
Replies: 3
Views: 647

Re: Transaction (TrustAccountingDate and TransferToFromID)

Transaction.TrustAccountingDate:
Equivalent field in V3.x is ITransaction.SystemPostedOn


Transaction.TransferToFromID:
Equivalent field in V3.x is
  • ILedgerTransferOutTransaction.TransferIn for a transfer out transaction
    ILedgerTransferInTransaction.TransferOut for a transfer in transaction
by sindrapal
Mon Apr 21, 2014 4:55 pm
Forum: Integration Development
Topic: Send to HUD and Hud Line
Replies: 4
Views: 687

Re: Send to HUD and Hud Line

Brian,

Can you please try this,

// Set the HUD line
split.Tags.Add(new Tag("HUDLine", line.Number.ToString()));
by sindrapal
Mon Apr 21, 2014 4:22 pm
Forum: Integration Development
Topic: Payor Code on New Transaction
Replies: 1
Views: 440

Re: Payor Code on New Transaction

Here you go, ILedgersManager lm = _sps.GetService<ILedgersManager>(); ILedgerInfo ledgerInfo = lm.Ledgers .Where(l => l.Name == "MyOrderLedger" && l.TrustAccount.Code == "TestAccount") .SingleOrDefault(); if (ledgerInfo != null) { // Load the full ledger object IOrderLedg...
by sindrapal
Thu Apr 17, 2014 5:26 pm
Forum: Integration Development
Topic: Order Locking Issues
Replies: 4
Views: 684

Re: Order Locking Issues

Brian, If it is a proform-generated transaction you are trying to update, PGT rules will run to keep the order and the ledger (transactions) in sync. PGT rules also run when an order is saved. There are several scenarios when PGT rules acquires a lock on the order (Ex. SendToHUD\EMD). My guess is th...