Search found 75 matches

by toddsou
Tue Nov 08, 2022 4:06 pm
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

Hi-

What does core.AutomationInstance.IsTopMost represent ?

Thank you.
by toddsou
Wed Oct 26, 2022 9:33 pm
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

Will any automation snippets start to run before the system finishes evaluating and perhaps-queueing the remaining automation snippets ?

Or do all criteria evaluations finish before the execution phase beings for those that have been enqueued ?
by toddsou
Wed Oct 26, 2022 1:39 pm
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

Perfect, thank you. As mentioned earlier, we can query and identify those AutomationInstance records where their QueuedOn field has been set, thereby indicating they've been placed on the queue for later execution of the "THEN" part of the Process. Now we're questioning the timing of our q...
by toddsou
Wed Oct 26, 2022 8:17 am
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

...and what are the available values for core.AutomationInstance.Status ? Just from observation, I've noted the following so far: 4 = Queued (aka criteria met, but not yet executed...I held the saved Order open) 2 = Running (once the Order was closed ) 8 = Done I think the View you recommended menti...
by toddsou
Tue Oct 25, 2022 10:24 am
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

Thanks, Bob. That all makes sense. Select evaluates the "If" criteria and if all are met, it will queue the "Then" activity Would that be the SelectDb.core.AutomationInstance.QueuedOn column ? If so, then I think that might be the "tell" that I'm looking for to indicate...
by toddsou
Sun Oct 23, 2022 11:07 pm
Forum: Automation Code Snippets
Topic: How to know when ALL the Automation Rules have finished ?
Replies: 16
Views: 14676

Re: How to know when ALL the Automation Rules have finished ?

This is great. tyvm. As you know, the Automation Rules follow a "When this, then That" format. These logs shown here capture the execution of the "That" part. Is there also something which captures the execution of the "When" part, as well? For example, if I defined a P...
by toddsou
Thu Oct 06, 2022 5:02 pm
Forum: Automation Code Snippets
Topic: Exceptions/Requirements – Handling multiple references to order objects
Replies: 3
Views: 1164

Exceptions/Requirements – Handling multiple references to order objects

We utilize automation code snippets to add Requirements/Exceptions to orders if certain criteria are met. Thus far, we have been able to achieve this when the Exception/Requirement content is straight text or it pulls from a very specific data field from the order. We are running into an issue when ...
by toddsou
Thu Oct 06, 2022 4:53 pm
Forum: Integration Development
Topic: Where are the Attachment file stored
Replies: 10
Views: 9078

Re: Where are the Attachment file stored

Understood on your stance, and I agree that there are consequences to this type of coupling and dependency. The solution being worked on is for some automated testing to take place, and so we're looking to give those testing scripts visibility to the SPS Order (via database entries, e.g.). They do n...
by toddsou
Tue Oct 04, 2022 11:29 am
Forum: Integration Development
Topic: Where are the Attachment file stored
Replies: 10
Views: 9078

Re: Where are the Attachment file stored

Hi- We are looking to discover the attachment names (don't need the blobs/content). You had mentioned that this metadata is serialized within the saved Order. The attached files are stored in the blob database as serialized objects. The only way to get an attachment is to open the order and open it ...
by toddsou
Wed Sep 28, 2022 5:00 pm
Forum: Server
Topic: Using SoftPro Select with F5 load balancer
Replies: 5
Views: 4199

Re: Using SoftPro Select with F5 load balancer

Hi, You previously mentioned: The SPS application sends an url query params hint called "cid". This value is mantained by the SPS app. Does this also hold true for custom applications which are built using the SDK ? If not, how can these types of applications manage the desired cid for the...