Search found 1290 matches

by BobRichards
Thu Jan 05, 2017 1:16 pm
Forum: Integration Development
Topic: Add Commitment Requirements with field codes
Replies: 2
Views: 648

Re: Add Commitment Requirements with field codes

The typical usage pattern when adding a new object is it to add it to the order BEFORE setting properties. Otherwise the newly constructed objects have no way to derive context and order rules may not work as expected. var commitments = order.Title.Commitments; var commitment = ((IEnumerable<dynamic...
by BobRichards
Tue Jan 03, 2017 6:42 pm
Forum: Integration Development
Topic: Recreating an existing Shell package from scratch
Replies: 3
Views: 699

Re: Recreating an existing Shell package from scratch

Please provide a full stack trace.
by BobRichards
Wed Dec 28, 2016 4:46 pm
Forum: Shell (User Interface)
Topic: Force profile based on order
Replies: 4
Views: 1196

Re: Force profile based on order

If you mean, "How do I change the user's profile from a Server Package based on the active document?", I am not aware of any way to do it. The server has no way of knowing what the active document is - or even if there is one.
by BobRichards
Wed Dec 28, 2016 11:49 am
Forum: Integration Development
Topic: Custom Property Page OnCommit issues
Replies: 1
Views: 445

Re: Custom Property Page OnCommit issues

I don't know what you are trying to do. Can you tell me your goal any add any necessary code you are executing?
by BobRichards
Thu Dec 22, 2016 3:03 pm
Forum: Integration Development
Topic: Command CTM not loading when debugging in VS2015
Replies: 2
Views: 549

Re: Command CTM not loading when debugging in VS2015

The most basic step to take at this point is to uninstall the Select client. Then reinstall it and create a Shell Package from the VS2015 project template. WITHOUT ALTERING IT, build and run the project and make sure that it loads and functions as you would expect. This exercises all the features ne...
by BobRichards
Tue Dec 20, 2016 3:12 pm
Forum: Integration Development
Topic: Cleaning up the EXP
Replies: 1
Views: 514

Re: Cleaning up the EXP

You can either:
  • Unregister the package (see SDK topic: How-To/Shell Package Development/"Register/Deploy a Package").
  • Or delete the entire EXP hive and create a new clean one with "sphive.exe": See this post.
by BobRichards
Mon Dec 19, 2016 2:33 pm
Forum: Custom Order Rules
Topic: Iron Python Logic: Disable Fields based on Contact and User
Replies: 1
Views: 1014

Re: Iron Python Logic: Disable Fields based on Contact and U

One of the major tenets in writing Custom Order Rules (CORs) is that all the operations must be fast since rules can be called multiple times. This means that you must not call any interfaces/services on the server or database. In order to get the necessary information, you would need to access the ...
by BobRichards
Thu Dec 15, 2016 3:22 pm
Forum: Custom Order Rules
Topic: Owners Policy Seller Paid Percent
Replies: 6
Views: 1410

Re: Owners Policy Seller Paid Percent

You can do a similar thing with CDFs. Here is an example of validating the Seller Pay Percentage for section C, line 1. Be aware that clicking on the message in the Errors and Warnings will not take the user to charge or payee/payor screens - just to the line. def CDFDetailCharge_SellerPayPercent_Va...
by BobRichards
Thu Dec 15, 2016 11:38 am
Forum: Custom Order Rules
Topic: Owners Policy Seller Paid Percent
Replies: 6
Views: 1410

Re: Owners Policy Seller Paid Percent

Contact your SoftPro customer support for a current copy of the help file. They are updated over time.