Business Rules

OneStream Dashboard

How to create a Dashboard Pop-Up Dialog Box

How to create a Dashboard Pop-Up Dialog Box There are situations where you have a button on a dashboard that will run a process such as a Business Rule. You may have the request to put in a “Are you Sure?” type of functionality, giving the user the chance to re-evaluate their choice, yes, or […]
Read more
OneStream Business Rule Performance Tips: Multithreading For Loops in C# and VB.NET image 1

OneStream Business Rule Performance Tips: Multithreading For Loops in C# and VB.NET

With today’s multi-core processor servers, using concurrent programming can significantly boost the performance of your Business Rule Code. One common scenario where concurrency shines is looping through large datasets or performing repetitive tasks. By multithreading these loops, we can divide and conquer, processing chunks of data in parallel. In this post, we’ll discuss the “how” […]
Read more
Featured image for USING @RETURN IN BUSINESS RULES

USING @RETURN IN BUSINESS RULES

USING @RETURN IN BUSINESS RULES There is a very useful function available to business rule authors, @RETURN . This function allows you to return a message to the user executing the business rule and terminate the business rule. One very valuable use of this function is when verifying the values input into run time prompts. […]
Read more