Search found 37 matches

by timothymeyer16
Mon Mar 07, 2022 1:11 pm
Forum: Custom Order Rules
Topic: Prevent Warning on READONLY
Replies: 4
Views: 3100

Prevent Warning on READONLY

def Task_Code_ReadOnly(args): # Allow changes if Blank if args.Context.Code == None or args.Context.Code == '': args.Value = False else: args.Value = The idea in the above code is simple. If there is no Task Code, allow a user to input values. If a task code exists, make the field read only. 1.PNG ...
by timothymeyer16
Tue Dec 14, 2021 4:01 pm
Forum: Integration Development
Topic: System.TypeLoadException: Could not load type 'VillageBoroughTitle' from assembly
Replies: 1
Views: 766

System.TypeLoadException: Could not load type 'VillageBoroughTitle' from assembly

Good afternoon, Inurgent question here. I seem to have trouble generating a new "VillageBoroughTitle" IOrderItem. The below code works well in other instances, such as contacts, properties, addresses, and more. Any Insight is apprecaited. // New VillageBorough IOrderItem villageBorough = o...
by timothymeyer16
Mon Dec 06, 2021 12:29 pm
Forum: Integration Development
Topic: AllowedValuesAttribute constraint On Setting Task Formula
Replies: 3
Views: 1211

Re: AllowedValuesAttribute constraint On Setting Task Formula

As an update, I played around with some values, but to no avail. Across orders and fields, the consistent error I am receiving is: System.OperationCanceledException: The order has unresolved errors. Any outstanding errors must be resolved before the order can be saved. at SoftPro.OrderTracking.Clien...
by timothymeyer16
Mon Dec 06, 2021 11:18 am
Forum: Integration Development
Topic: AllowedValuesAttribute constraint On Setting Task Formula
Replies: 3
Views: 1211

AllowedValuesAttribute constraint On Setting Task Formula

Good Morning. I am receiving the following error when attempting to set a simple formula into a Checklist Task Status field. [07:13 | Entry:] Err2: SoftPro.ClientModel.ValidationException: The specified value violates the SoftPro.ClientModel.Validations.AllowedValuesAttribute constraint. ---> System...
by timothymeyer16
Wed Oct 27, 2021 4:15 pm
Forum: Integration Development
Topic: Server SPSPKG Package File Rejected from Select Services
Replies: 3
Views: 1564

Re: Server SPSPKG Package File Rejected from Select Services

Bob,

I do apologize for asking if there are any updates, but project deadlines are approaching and I can not even access a dev hive to begin testing.

Are there any blaring mistakes I may have over looked in my development?
by timothymeyer16
Tue Oct 12, 2021 9:20 am
Forum: Integration Development
Topic: Server SPSPKG Package File Rejected from Select Services
Replies: 3
Views: 1564

Server SPSPKG Package File Rejected from Select Services

Good morning, We are experiencing two issue issues regarding our SDK SPSPKG files. First, we are unable to access Hive Mode for server packages. The temporary server will start without issue, but when we try to connect an instance of Select it enters an infinite loop in authentication and eventually...
by timothymeyer16
Mon Oct 04, 2021 3:07 pm
Forum: Integration Development
Topic: Modifying the SPAdmin Management Console View
Replies: 1
Views: 1298

Modifying the SPAdmin Management Console View

SoftPro, The SDK documentation is explicit in how to add additional menus and groups to existing UI elements. <Using alias="root" href="C:\Program Files\SoftPro\Select SDK\Include\RootPackage.cts" /> .. <GroupRef id="root:NewOpenSaveGroup"> <ButtonRef id="CustomBut...
by timothymeyer16
Fri Sep 24, 2021 11:11 am
Forum: General
Topic: Process Manager Instance Search Return Invalid Object
Replies: 1
Views: 3418

Process Manager Instance Search Return Invalid Object

Good Morning. I'm Attempting to create a program that cancels and restarts all process instances that are stuck. The current built in system is malfunctioning. In dev I can access the instances and cancel / restart them with the following code: foreach (IProcessInstanceInfo instance in processMgr.In...
by timothymeyer16
Fri Sep 24, 2021 10:56 am
Forum: General
Topic: Programmatically Adding Profiles to Document Trees
Replies: 3
Views: 3795

Re: Programmatically Adding Profiles to Document Trees

I was able to get something working - Essentially I just treated it like a list and then applied changes: This is how I reset the profiles IDocumentTree tree = DocumentManager.GetDocumentTree(treeInfo); tree.Profiles.Clear(); DocumentManager.ApplyChanges(tree); This is how I added a profile foreach ...