Search found 1292 matches

by BobRichards
Tue Jun 27, 2023 10:39 am
Forum: Installation and Setup
Topic: Mixed mode SQL access with Standard
Replies: 1
Views: 4094

Re: Mixed mode SQL access with Standard

Sorry but I can't help since I deal with SoftPro Select. Can you please post your question to the forum Standard/Enterprise Development so someone from that team can answer it. Thanks!
by BobRichards
Wed Jun 14, 2023 3:58 pm
Forum: ReadyDoc Visibility Conditions
Topic: How to check every seller
Replies: 8
Views: 9313

Re: How to check every seller

Really close. Under the covers, we assign a different numerical value to each possible BuyerSellerType . All organization types are 32 or greater. Minor correction to code below. # Test every seller in the order. for seller in Order.Sellers: # Only show if seller is an organization. if seller.BuyerS...
by BobRichards
Wed Jun 14, 2023 2:25 pm
Forum: ReadyDoc Visibility Conditions
Topic: How to check every seller
Replies: 8
Views: 9313

Re: How to check every seller

I want to determine if the AKA has printable characters in it - anything except spaces and tabs. The command " aka.strip() " removes all "whitespace" (non-printable characters like spaces and tabs from the front and end of the string). v = " \t hello ".strip() # v = &qu...
by BobRichards
Tue Jun 13, 2023 3:24 pm
Forum: Automation Code Snippets
Topic: Changing Ownership Profile via Automation
Replies: 3
Views: 6572

Re: Changing Ownership Profile via Automation

Order ownership? Which ownership are you refererring to?

I have not tried but you should be able to change order ownership in an automation snippet.
by BobRichards
Tue Jun 13, 2023 3:21 pm
Forum: ReadyDoc Visibility Conditions
Topic: How to check every seller
Replies: 8
Views: 9313

Re: How to check every seller

In this script, we examine all the sellers until we either find one with an AKA value or run out of sellers. At the top of the Sellers loop, we move to the next seller if it is any type of organization. If it isn't (therefore, Male, Female, Joint), then we examine the Individual1 AKA property for a ...
by BobRichards
Tue Jun 13, 2023 11:10 am
Forum: Installation and Setup
Topic: SDK installation and Documents
Replies: 1
Views: 3975

Re: SDK installation and Documents

The SoftPro Select SDK is only available from SoftPro. If you are interested in purchasing it, please contact your Customer Support Representative. The SDK requires Visual Studio 2019 and is not available from Microsoft. The SDK provides information on public interfaces and methods to help write app...
by BobRichards
Tue Jun 06, 2023 2:01 pm
Forum: ReadyDoc Development
Topic: Page Number Inconsistency
Replies: 2
Views: 4569

Re: Page Number Inconsistency

I'm sorry you are having this problem. Unfortunately, it is a limitation of our third party rendering agent. There is no solution that we are aware of except removing the page numbers.
by BobRichards
Thu Jun 01, 2023 1:35 pm
Forum: General
Topic: Connection to AWS
Replies: 5
Views: 6654

Re: Connection to AWS

Basically, I don't know how you are getting the information you are so I can't help. Is it from a database query or are you opening the order object and getting the information (the preferred way to get most information)? If you are using an AWS service to examine your Select SQL database, then many...
by BobRichards
Thu Jun 01, 2023 12:05 pm
Forum: General
Topic: Connection to AWS
Replies: 5
Views: 6654

Re: Connection to AWS

Please submit your code.
by BobRichards
Wed May 31, 2023 5:05 pm
Forum: Automation Code Snippets
Topic: Automate "X" in Pager field if there is a 2nd person under Selling Broker
Replies: 1
Views: 5566

Re: Automate "X" in Pager field if there is a 2nd person under Selling Broker

I assume you have set up an Automation Snippet to run "Everytime an order is saved". In that case, the order object is held in the variable "Context". from System import * from SoftPro.ClientModel import * from SoftPro.Select.Client import * Context.Project = str(DateTime.Now) Yi...