Search found 1292 matches

by BobRichards
Wed Nov 19, 2014 4:54 pm
Forum: Integration Development
Topic: Subscribe to the OrderSaved event in a Server Package?
Replies: 1
Views: 505

Subscribe to the OrderSaved event in a Server Package?

When subscribing to events in a Select Server Package, you must be careful to never access other packages (interfaces, etc.) in the OnInitialize() method. When this method executes, there is no guarantee that other packages have been loaded. You must subscribe to the event that fires when everything...
by BobRichards
Wed Nov 19, 2014 1:02 pm
Forum: Integration Development
Topic: How do I add Payees and Payors to HUD lines?
Replies: 1
Views: 496

Re: How do I add Payees and Payors to HUD lines?

If you need to add a Payee, you create a new object from the IOrder and add it to the desired Payees collection.

Code: Select all

// Create a new Payee
dynamic addedPayee = ((IOrder)order).CreateNew("HUD1100CommonPayee");
addedCharge.Payees.Add(addedPayee);
by BobRichards
Wed Nov 19, 2014 1:00 pm
Forum: Integration Development
Topic: How do I add Payees and Payors to HUD lines?
Replies: 1
Views: 496

How do I add Payees and Payors to HUD lines?

This topic is an extension to How do I add lines and charges to HUD lines? (http://www.softprocorp.com/devforum/viewtopic.php?f=19&t=711) so I will be using the code from that topic. When a HUD charge is created, a Payee and Payor is generally instantiated for you. I will be using the Payees as ...
by BobRichards
Wed Nov 19, 2014 12:13 pm
Forum: General
Topic: Adding/Updating Fees in HUD 1200 section
Replies: 11
Views: 3213

Re: Adding/Updating Fees in HUD 1200 section

Refer the viewtopic.php?f=19&t=711 or search the forum for How do I add lines and charges to HUD lines? topic. There, I give examples of adding lines and charges for the 1100 section. This should help.
by BobRichards
Wed Nov 19, 2014 12:09 pm
Forum: Integration Development
Topic: How do I add lines and charges to HUD lines?
Replies: 3
Views: 1180

Re: How do I add lines and charges to HUD lines?

To add new lines and charges, we first add the line then modify/add charges to the line. // Get the lines section we want to add lines to. dynamic hud = order.HUDs[0]; dynamic section = hud.Section1100; // Get a new line for this section and add it to the order. dynamic newLine = ((IOrder)order).Cre...
by BobRichards
Wed Nov 19, 2014 12:00 pm
Forum: Integration Development
Topic: How do I add lines and charges to HUD lines?
Replies: 3
Views: 1180

How do I add lines and charges to HUD lines?

If you want to modify a line that already exists in the order, then you can access the line directly. dynamic hud = order.HUDs[0]; dynamic line = hud.Lines[1101]; All of the line properties such as the Description, Reference and the Charges collection are available. It is important to note that some...
by BobRichards
Tue Nov 18, 2014 3:18 pm
Forum: Integration Development
Topic: Invoke command conversion issue
Replies: 1
Views: 674

Re: Invoke command conversion issue

To invoke the handler for a CommandID, try this:

Code: Select all

// RibbonButton2 is a CommandID that is defined in my project.
InvokeEventArgs eventArgs = new InvokeEventArgs(RibbonButton2);
ICommandManager cmdMgr = GetService<ICommandManager>();
cmdMgr.Invoke(eventArgs);
by BobRichards
Tue Nov 18, 2014 2:09 pm
Forum: Integration Development
Topic: GetService for OrderTracking syntax Cameron build
Replies: 1
Views: 625

Re: GetService for OrderTracking syntax Cameron build

There is no OrderTracking service. Perhaps I can help if you tell me what are you trying to achieve?
by BobRichards
Tue Nov 18, 2014 2:03 pm
Forum: General
Topic: Adding/Updating Fees in HUD 1200 section
Replies: 11
Views: 3213

Re: Adding/Updating Fees in HUD 1200 section

Can you send me what you have so far?
by BobRichards
Fri Nov 14, 2014 2:13 pm
Forum: ProForm (Order Tracking)
Topic: Creating a LoanPolicy
Replies: 3
Views: 4396

Re: Creating a LoanPolicy

Loan Policy exceptions in an order are viewable in the "Policy - Schedules B1, B2" screen. If you are added exceptions to the LoanPolicy object, this is where they should show up. However, don't confuse the screen you might view order information in with the underlying location the raw inf...