Search found 1290 matches

by BobRichards
Wed Mar 01, 2017 2:43 pm
Forum: ReadyDoc Visibility Conditions
Topic: Visibility Base on Contact Name or Type
Replies: 4
Views: 3649

Re: Visibility Base on Contact Name or Type

In order to get your preferred result, our default would have to be make all folders and files hidden unless there is a Visibility rule to the contrary - that is not the way they work. All files (or preferably folders so you don't have to add visibility rules to every document) that you may wish to ...
by BobRichards
Tue Feb 28, 2017 3:52 pm
Forum: Integration Development
Topic: sdk update integration
Replies: 1
Views: 642

Re: sdk update integration

The minimum requirements to open a stand-alone application that communicates to a mid-tier are to include the following DLLs as project references: SoftPro.Accounting.Client SoftPro.ClientModel SoftPro.Documents.Client SoftPro.Imaging.Client SoftPro.OrderTracking.Client SoftPro.OrderTracking.Workflo...
by BobRichards
Wed Feb 22, 2017 3:10 pm
Forum: Shell (User Interface)
Topic: RTF Textbox
Replies: 1
Views: 834

Re: RTF Textbox

If you get the RTF text out of the field then put it right back in without modification and the print functionality works properly, then your textbox may be using a different RTF variant (there are several). Try comparing the before and after RTF generated for your RichTextBox control. Sorry, but I'...
by BobRichards
Mon Feb 13, 2017 1:23 pm
Forum: Integration Development
Topic: Getting order from Register TransactionEvent
Replies: 8
Views: 1143

Re: Getting order from Register TransactionEvent

The answer is no. You must reopen the order to see order information. The most "efficient" way may be irrelevant since the only way to guarantee you can open the order is to open it in a read-only mode. As far as I know, the only time Select gives you an open order is the OrderSaving event.
by BobRichards
Mon Feb 13, 2017 1:17 pm
Forum: ReadyDoc Visibility Conditions
Topic: Visibility Base on Contact Name or Type
Replies: 4
Views: 3649

Re: Visibility Base on Contact Name or Type

Yes. I this case I am filtering on the Underwriter.Name field, but you can use whatever you want (or multiple fields, too). return any(u.Name == 'First American' for u in Order.Underwriters) I would add one more function so the search becomes case insensitive. In this case, the underwriter names are...
by BobRichards
Tue Feb 07, 2017 6:45 pm
Forum: Custom Order Rules
Topic: Disable Favorites Folder using COR
Replies: 1
Views: 1266

Re: Disable Favorites Folder using COR

No. Disability rules have no effect on Favorites folder contents.
by BobRichards
Tue Feb 07, 2017 6:43 pm
Forum: Integration Development
Topic: Getting order from Register TransactionEvent
Replies: 8
Views: 1143

Re: Getting order from Register TransactionEvent

If you are using notifications and you are trying to capture items that are being posted or voided (etc.) from the order ledger (or any other ledger), you should look into using the Fee Detail Changed notification. The XML message passed to the handler has information like the LedgerID (pt.Ledger ID...
by BobRichards
Tue Feb 07, 2017 11:47 am
Forum: Integration Development
Topic: Profile Item Classification
Replies: 1
Views: 503

Re: Profile Item Classification

This property is used internally and provides no additional information to other developers. If there is a specific need for more information, please let us know.
by BobRichards
Thu Jan 26, 2017 7:08 pm
Forum: Custom Order Rules
Topic: Validate Custom Field
Replies: 2
Views: 1565

Re: Validate Custom Field

You had two issues with your COR. First is that you can only emit messages (RaiseError, RaiseWarning, RaiseInformation) inside Validate CORs (not Value as it was originally written). Second is that since the context for "OverTheLimit_150431#" is a Contact, you must get the checkbox value f...
by BobRichards
Tue Jan 24, 2017 12:14 pm
Forum: Integration Development
Topic: Getting order from Register TransactionEvent
Replies: 8
Views: 1143

Re: Getting order from Register TransactionEvent

There is not easy to way to get the entire order other than to open it. However, the event args do give much information regarding the proposed changes. If you want to view something unrelated to these changes (like set the Project Name, for instance), you have to open the order manually - in read o...