Search found 22 matches

by neetab
Tue Nov 01, 2016 7:12 am
Forum: Integration Development
Topic: Monitoring for last transaction to be disbursed
Replies: 4
Views: 778

Re: Monitoring for last transaction to be disbursed

You will not be able to determine the last one just by looking at the ledger balance. You will still need to hook into the Changed events, but you need to load all the transaction infos for the given ledger to determine if all transactions have been posted/voided/deleted and if the ledger balance is...
by neetab
Mon Oct 31, 2016 10:36 am
Forum: Integration Development
Topic: Monitoring for last transaction to be disbursed
Replies: 4
Views: 778

Re: Monitoring for last transaction to be disbursed

1.) What is a good alternative method to know when the last transaction has been disbursed and the ledger is balanced (excluding held/voided/deleted transactions)? When posting checks the transaction changed event is fired one after the other, so you should still be able to use this event to check t...
by neetab
Mon Aug 15, 2016 2:52 pm
Forum: Integration Development
Topic: Set LedgerTransferIn on a LedgerTransferOut
Replies: 5
Views: 951

Re: Set LedgerTransferIn on a LedgerTransferOut

FeeTransferLedger is on the PaymentInfo object.

Once you get the Contact, you can set the its value

[contact].PaymentInfo.FeeTransferLedger = “FeeLedgerName”
by neetab
Thu Aug 11, 2016 7:06 pm
Forum: Integration Development
Topic: Set LedgerTransferIn on a LedgerTransferOut
Replies: 5
Views: 951

Re: Set LedgerTransferIn on a LedgerTransferOut

The FeeTransferLedger field is not available via UI on the buyer/seller screen. You should be able to set it via API. Make sure you have the below permissions Permissions.ProForm,Order.General.OrderContacts.BuyerSeller.Add and Permissions.General.OrderContacts.BuyerSeller.Edit Permissions.ProForm.Or...
by neetab
Tue May 10, 2016 2:11 pm
Forum: Integration Development
Topic: What event is fired when a disbursement check is posted
Replies: 1
Views: 553

Re: What event is fired when a disbursement check is posted

1.) Is there an event that is fired off after all transaction are disbursed?
We do not fire off an event after all transactions are disbursed.

2.) What events to I need to subscribe to so I can monitor Outgoing Wire and Check disbursements?
You can subscribe to TransactionChanged event.
by neetab
Wed Dec 31, 2014 3:52 pm
Forum: Integration Development
Topic: Can I add my package button to the Order Ribbon in 3.0?
Replies: 6
Views: 1026

Re: Can I add my package button to the Order Ribbon in 3.0?

I will email you the cts file shortly.
by neetab
Thu Mar 20, 2014 5:45 pm
Forum: Integration Development
Topic: Unable to update GFE type for HUD lines 1101/1103
Replies: 7
Views: 989

Re: Unable to update GFE type for HUD lines 1101/1103

I tried the way you are setting it and I am able to set the GFEType.

Do you have the check box for "Use 2009 RESPA regulations for HUD-1 & Hud-1A" checked on the Options screen? You need to have that checked.
by neetab
Thu Mar 20, 2014 3:39 pm
Forum: Integration Development
Topic: Unable to update GFE type for HUD lines 1101/1103
Replies: 7
Views: 989

Re: Unable to update GFE type for HUD lines 1101/1103

Can you try the following to set the GFE type

IHudLine hudLine = order.HUD[0].GetHudLine(1101);
IHudLineAdditionalCharge hac = hudLine.AdditionalCharge[0];
hac.GoodFaithEstimateType = GoodFaithEstimateType.CanIncreaseUpTo10;
by neetab
Thu Mar 13, 2014 9:47 am
Forum: Integration Development
Topic: Change to "Title Status" is not logged in OrderHistory
Replies: 5
Views: 826

Re: Change to "Title Status" is not logged in OrderHistory

This is a bug in version 2.6 thats is fixed in version 3.0.
by neetab
Tue Mar 11, 2014 9:54 am
Forum: Integration Development
Topic: Exceptions and Requirement
Replies: 14
Views: 1844

Re: Exceptions and Requirement

ok, try the code below.

ospsReqEx = DirectCast(spsOrder, IOrder).CreateNew("Exception")
'ospsReqEx.Text = strDesc
'ospsReqEx.Code = GetNode(xmlNode, "Code", "")

spsCommitment.Exceptions.Add(ospsReqEx)