Search found 1290 matches

by BobRichards
Fri Apr 08, 2016 3:13 pm
Forum: ReadyDoc Development
Topic: TX Control
Replies: 1
Views: 1148

Re: TX Control

Please refer to viewtopic.php?f=8&t=931.
by BobRichards
Wed Apr 06, 2016 4:08 pm
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

I don't entirely follow your initial setup. Are you saying that you cannot put an instance of Select Server on each developer's system who is writing a custom server package? Your development should be as close as possible to your deployment environment.
by BobRichards
Tue Apr 05, 2016 2:33 pm
Forum: Integration Development
Topic: Create New Exp Hive
Replies: 5
Views: 925

Re: Create New Exp Hive

Did you do the...

Code: Select all

select /setup
...step to add your UI elements to Select client, also?

(From HowTo/Shell Package Development/Register/Deploy a Package)
by BobRichards
Wed Mar 23, 2016 5:00 pm
Forum: General
Topic: CDF Fees
Replies: 4
Views: 1258

Re: CDF Fees

The field code browser is a starting point - but as you observed, not all Select objects are displayed. Fortunately, it generally gives a good place to start. The following code snippet provides a path to the Fee object collection: // Navigate to the individual Tax and Government charge. dynamic ord...
by BobRichards
Wed Mar 16, 2016 1:51 pm
Forum: Shell (User Interface)
Topic: Custom Rule Use Lookups
Replies: 1
Views: 732

Re: Custom Rule Use Lookups

You must not do this operation in a Custom Order Rule since it can generate multiple queries to the database. Calling a mid-tier interface should not be performed either since it would make running the rule set entirely too slow. Remember that rules can run multiple times so response time is further...
by BobRichards
Wed Mar 09, 2016 6:12 pm
Forum: Server
Topic: Order open event
Replies: 1
Views: 2743

Re: Order open event

Sorry, but there is no an OrderOpen notification. Also, as a server package, you cannot see individual field level changes the user is making on the client. If you wish to perform validations (etc.) as the user changes individual fields, you need to do this at the client. Server packages can only s...
by BobRichards
Mon Feb 29, 2016 11:16 am
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1384

Re: OpenOrder Object reference not set to an instance of an

Unfortunately it is hard to help much since you are using your SPSelectService class. I am curious why you authenticate with one instance of this class and then process the order with another instance of this class that has not authenticated. This could be the reason for the unexpected behavior. Eve...
by BobRichards
Tue Feb 23, 2016 12:59 pm
Forum: Server
Topic: Shared Libraries
Replies: 1
Views: 2626

Re: Shared Libraries

This is a .NET question. There are .NET ways of loading specific assemblies into the Application Domain based on non-default criteria. Be aware that the order in which Select loads packages is indeterminate - do not depend on any specific order!
by BobRichards
Mon Feb 22, 2016 5:43 pm
Forum: General
Topic: Publish Doc updates to select 4.0
Replies: 3
Views: 998

Re: Publish Doc updates to select 4.0

I don't understand what you are trying to do. However, please review the topics in the Select SDK for information regarding printing (How-To/Print Pipeline)? Select has changed in this area since version 2.6 and a thorough understanding of the current implementation will be required.
by BobRichards
Fri Feb 19, 2016 11:54 am
Forum: Integration Development
Topic: Get or Test Formula Results in API
Replies: 1
Views: 459

Re: Get or Test Formula Results in API

There is no (easy) way of executing the formulas in this way. The formula editor dialog code you are referring to is not exposed via public APIs. We do not have plans to expose it at this time.