Search found 1291 matches

by BobRichards
Tue May 07, 2024 3:18 pm
Forum: Integration Development
Topic: Exceptions / Requirements
Replies: 3
Views: 4149

Re: Exceptions / Requirements

Excellent job with your code to move them around. Sometimes I wish I could assign the Guid to objects for that very reason but the creation of an IOrderItem creates a new Guid for us and can't be changed. Programmatic re-ordering can be done but I do not have any code that shows an example. As Requi...
by BobRichards
Mon Feb 26, 2024 11:48 pm
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 1087

Re: CurrentSessionToken is null

In order to help, please provide the code for the area that is failing and the complete call stack. Thanks.
by BobRichards
Mon Feb 19, 2024 9:08 pm
Forum: Server
Topic: Registering a package
Replies: 2
Views: 1075

Re: Registering a package

If you look up the attributes in the Select SDK Help file (SelectSdk.chm), you will see that all three are defined in SoftPro.Select.Shell.dll in the namespace SoftPro.Select.Shell.Registration . Add the DLL as a project reference and add "using SoftPro.Select.Shell.Registration;" to the t...
by BobRichards
Mon Feb 19, 2024 7:45 pm
Forum: Automation Code Snippets
Topic: Corrupted Code Snippets for Task Automation
Replies: 4
Views: 1200

Re: Corrupted Code Snippets for Task Automation

I do not see anything wrong with the code you wrote. Looks good. You need to track down additional information about when an error occurs. Can you look (or have an admin look) at the Event Log for the server? You should find an event for the error. Also look at any events within a second or so of th...
by BobRichards
Mon Feb 12, 2024 10:38 am
Forum: Server
Topic: Setting State on a new order
Replies: 1
Views: 1048

Re: Setting State on a new order

States (like several others types) inherit from IValueType. // Get IState object. IEnumManager enumMgr = ss.GetService<IEnumManager>(); IState state = enumMgr.GetEnum<IState>().Values.Where(t => t.Code == "TX").First(); ... o.SettlementLoction.Place.Address.State = state;
by BobRichards
Fri Feb 09, 2024 12:16 pm
Forum: ReadyDoc Development
Topic: Return Ownership Profile Name
Replies: 4
Views: 1338

Re: Return Ownership Profile Name

I asked a colleague in the documents department to take a look at your problem. He agreed with you that {{Order.OwnershipProfile.Name}} does not exist. He created some code to help you get the value. If you have any issues, please check back with us with the symptoms. <VAR $ProfileName (""...
by BobRichards
Tue Feb 06, 2024 5:20 pm
Forum: ReadyDoc Development
Topic: Return Ownership Profile Name
Replies: 4
Views: 1338

Re: Return Ownership Profile Name

Have you tried: {{Order.OwnershipProfile.Name}}
by BobRichards
Wed Jan 31, 2024 3:57 pm
Forum: Server
Topic: Creating an order
Replies: 7
Views: 2663

Re: Creating an order

To CREATE an order, you must do it with user credentials. Most people have a fixed user set aside for this function. This allows the user to have whatever permissions are needed to create the order. You can also change the user's profile or just the order's ownership profile on-the-fly if desired.
by BobRichards
Wed Jan 31, 2024 12:28 pm
Forum: Server
Topic: Creating an order
Replies: 7
Views: 2663

Re: Creating an order

Orders should typically be created in a shell or standalone package context like is demonstrated in the SDK in Standalone Application Development topic "Create an Order". This is because the user that is active in the server does not have all the information necessary to create an order. F...
by BobRichards
Thu Jan 18, 2024 4:52 pm
Forum: Server
Topic: Issue creating a scheduled task
Replies: 3
Views: 2081

Re: Issue creating a scheduled task

Please post the source code and exception call stack.