Search found 9 matches

by sjohn
Mon Apr 09, 2018 3:23 pm
Forum: General
Topic: Timeout exception and Blank orders
Replies: 9
Views: 2132

Re: Timeout exception and Blank orders

Thank you for the update.
What we encounter is a time out issue when trying to create a new order from a Pre-defined template.
by sjohn
Mon Mar 26, 2018 9:56 am
Forum: General
Topic: Timeout exception and Blank orders
Replies: 9
Views: 2132

Re: Timeout exception and Blank orders

tmeisinger wrote: Mon Mar 26, 2018 9:08 am We just upgraded from 4.0.30302.62 to 4.3.60108.11 and looks like we might be having the same problem. Support didn't seem to have a record of a fix for this. Can anyone offer additional information?
We still have an open ticket with SoftPro for this and no resolution yet.
by sjohn
Mon Oct 02, 2017 3:46 pm
Forum: General
Topic: Timeout exception and Blank orders
Replies: 9
Views: 2132

Re: Timeout exception and Blank orders

What was the version of Select you were using prior to the upgrade? This could be caused by a known bug in the message queue subsystem of Select. There is a fix available, but you'll need to contact support directly to make sure that's the issue and get it resolved. Our previous version was 4.0.303...
by sjohn
Mon Oct 02, 2017 9:00 am
Forum: General
Topic: Timeout exception and Blank orders
Replies: 9
Views: 2132

Timeout exception and Blank orders

Hi, After our recent Softpro select upgrade to 4.3 last weekend we have been receiving frequent time out errors during our integration. Time out error occurs at the 5th line of code below and code execution stops but the issue we are facing is by this time an order number is generated and a blank or...
by sjohn
Wed Sep 02, 2015 1:34 pm
Forum: Standard/Enterprise Development
Topic: Finding Formulas in Templates
Replies: 2
Views: 2623

Finding Formulas in Templates

Hello, I’m in the process of creating new CDF templates based on our existing ones. I need to be able to find all of the formulas on our current templates. I understand SoftPro has removed the SQL column that contained this information. Are there any other efficient means to find the formulas? Thanks.
by sjohn
Fri Apr 17, 2015 5:35 pm
Forum: Integration Development
Topic: Cannot Access Member
Replies: 5
Views: 901

Re: Cannot Access Member

Hi, The following code works if I try to add task while creating a new order, but get 'Cannot access member' error when I open an existing order and try to add a RequestedTask to it. We have been doing this in the older version (v2.6), is it possible in v3.0 and above? dynamic tasks = order["Ta...
by sjohn
Thu Apr 16, 2015 4:59 pm
Forum: Integration Development
Topic: Cannot Access Member
Replies: 5
Views: 901

Re: Cannot Access Member

Hi Bob,

I tried that and get the same error.

thanks
by sjohn
Thu Apr 16, 2015 3:51 pm
Forum: Integration Development
Topic: Cannot Access Member
Replies: 5
Views: 901

Re: Cannot Access Member

Thank you Bob, that worked! I am having same 'Cannot access member' issue when I am trying to add new task, I tried the following code dynamic newtask = order.CreateNew("RequestedTask"); newtask.Description = "Title Update"; newtask.Status = TaskStatusType.Requested; newtask.Requ...
by sjohn
Thu Apr 16, 2015 2:38 pm
Forum: Integration Development
Topic: Cannot Access Member
Replies: 5
Views: 901

Cannot Access Member

Hi, I am trying to add a Buyer using the following code but get 'Cannot access Member' in the line allBuyers.Add(newBuyer); IList allBuyers = (IList)newOrder["Buyers"]; IOrderItem newBuyer; if (allBuyers == null || allBuyers.Count == 0) { newBuyer = newOrder.CreateNew("Buyer"); a...