Search found 22 matches

by Melissa Cook
Fri Feb 05, 2016 11:12 am
Forum: Integration Development
Topic: CDF Section E fees and payees
Replies: 1
Views: 534

Re: CDF Section E fees and payees

We wanted to make the payees easier to understand and more streamlined in Section E on the CDF. So now when you add fees in Section E, it generates only one payee for all fees on that particular charge. To split the fees among multiple payees, you still can go to the payee grid and split the money o...
by Melissa Cook
Tue Aug 25, 2015 4:30 pm
Forum: Integration Development
Topic: Delete or Move CDF Line to another section via API
Replies: 1
Views: 538

Re: Delete or Move CDF Line to another section via API

Yes, you will need to delete from the old section and create a new charge in the new section. To remove a line, you would need to do something like this:

((IList)((IOrderItem)order.CDFs[0]).Lines).Remove(cdfLine);
by Melissa Cook
Mon Jul 27, 2015 9:09 am
Forum: Shell (User Interface)
Topic: Adding lines and charges to CDF
Replies: 1
Views: 746

Re: Adding lines and charges to CDF

You cannot add new lines to Page 3 sections, but you can add new charges to the existing lines. For Page 2, you can add lines and charges. Since you have the correct code below, I will give you the name of the line object that you will need to replace it with. Lines OriginationChargeDetailLine Servi...
by Melissa Cook
Thu Jul 16, 2015 8:59 am
Forum: Integration Development
Topic: Adding a Line to CDF PrepaidSection
Replies: 5
Views: 791

Re: Adding a Line to CDF PrepaidSection

Oh, I see what the problem is. Sorry...you should do this:

dynamic CDFLine = ((IOrder)order).CreateNew("PrepaidDetailLine");
order.CDFs[0].Lines.Add(CDFLine);

Let me know if you have further problems.
by Melissa Cook
Mon Jul 13, 2015 1:52 pm
Forum: Integration Development
Topic: Adding a Line to CDF PrepaidSection
Replies: 5
Views: 791

Re: Adding a Line to CDF PrepaidSection

You should do this instead:

order.CDFs[0].PrepaidSection.Lines.Add(((IOrder)order).CreateNew("PrepaidDetailLine"));

Let me know if you have anymore questions.
by Melissa Cook
Fri May 22, 2015 1:13 pm
Forum: Integration Development
Topic: CDF Question-BuyerAmount ,seller amount and DisclosureAmoun
Replies: 3
Views: 783

Re: CDF Question-BuyerAmount ,seller amount and DisclosureAm

Due to regulations and the various lines you can put your credit/debit on, we now have a AssociatedLine dropdown, instead of a IsCreditDebit checkbox for a CDF. So your code would be... if (cdfLineOrderItem.HasProperty("AssociatedLine") && cdfLineOrderItem.GetIsSupported("Asso...
by Melissa Cook
Wed May 20, 2015 12:49 pm
Forum: Integration Development
Topic: CDF Question-BuyerAmount ,seller amount and DisclosureAmoun
Replies: 3
Views: 783

Re: CDF Question-BuyerAmount ,seller amount and DisclosureAm

You will need to get the Section off the CDF and then from there the Line off the associated Section. Once you get the line then you can get the money off the charge. So for example, order.CDFs[0].ServiceShoppedForSection.Lines[x].Charges[y].BuyerPaidAtClosing order.CDFs[0].ServiceShoppedForSection....
by Melissa Cook
Wed Apr 22, 2015 3:59 pm
Forum: Integration Development
Topic: CDF Question - ClosingDates
Replies: 1
Views: 432

Re: CDF Question - ClosingDates

The ClosingDates collection is a fixed collection with 5 items in it...you cannot add or remove from it. So if you wanted to get the ClosingDate item that is for the Borrower Signing Date, it would look something like this... order.CDFs[0].DeliveryTracking.ClosingDates[0] if you wanted to get the it...
by Melissa Cook
Wed Apr 22, 2015 1:44 pm
Forum: Integration Development
Topic: CDF Question - CDF Page 2 - Lines
Replies: 2
Views: 552

Re: CDF Question - CDF Page 2 - Lines

You will need to get the Section off the CDF and then from there the Lines off the associated Section. So for example,

order.CDFs[0].ServiceShoppedForSection.Lines[2]

Let me know if you have further questions.
by Melissa Cook
Wed Mar 25, 2015 3:44 pm
Forum: Integration Development
Topic: V4.0 NewOrder - Creates CDF instead of HUD1 order
Replies: 5
Views: 843

Re: V4.0 NewOrder - Creates CDF instead of HUD1 order

The code that you have looks correct. Once you create the order using the OrderCreationSpec, how are you determining that it is a HUD order and not a CDF order?