Recent Content
How to make coffee with OneStream?
3 MIN READ Hi there! If you are reading this post it probably means that you are a coffee addict. Or a OneStream addict. Or both! Before starting the explanation on how to make coffee with OneStream, I would like to say I had the idea of making this while reading the OneStream Foundation Handbook – I recommend this book, it is fun to read and they are lots of good stuff in it! For example, page 21 where Greg Bankston (GregB) said “I have joked on numerous occasions that OneStream can probably even automate a customer’s coffee maker for them if they can find one that accepts the right commands. While it is indeed a joke, it is not too far from the truth either.” To make coffee with OneStream you will need to Buy a Philips hue system and connect your coffee machine to it. Connect the api of the Philips Hue to OS Create a powershell script Open some firewall ports Create a DM job that links the dashboard with the BR Create a BR that launches a script Create a dashboard – just because life is nicer with a dashboard! For the 2 first steps, after buying your Philips Hue System you should read this blog : https://developers.meethue.com/develop/get-started-2/#turning-a-light-on-and-off The idea here is to generate a remote username. Now you should test the api connection using a powershell script like the one below. When it is working then you should save this script on your OneStream server. You can notice that the power plug connected to the Philips Hue is seen as a light as it has only an On/Off state. # Hue Bridge $hueBridge = "http://192.168.109.10:80/api" # Username $username = '4HNMsqH9n5NwMH9n5NFVLY9n5NzZrml-45e' # Command to Turn on $apicontent= '{"on":true}' # Command to Turn off – activate it on another script # $apicontent= '{"on":false}' # Invoke commands Invoke-WebRequest -Method put -Uri "$($hueBridge)/$($username)/lights/21/state" -Body $apicontent As the script is sitting on your server, I would recommend that you run it with powershell directly on the server. It is a good way to test and check that all firewall ports are open. Once you have the powershell script running it should already turn on your coffee from the server. Do not forget to add the script to turn it off too. Now you need to go to your OneStream application to create a Extender business rules. It should call for the powershell script on your server. It will look like this : Namespace OneStream.BusinessRule.Extender.PlugOn Public Class MainClass Public Function Main(ByVal si As SessionInfo, ByVal globals As BRGlobals, ByVal api As Object, ByVal args As ExtenderArgs) As Object Try ' Process.Start("powershell", "-File C:\TurnOnHue") Shell("powershell -ExecutionPolicy Bypass ""C:\TurnOnPlug"" ") Return Nothing Catch ex As Exception Throw ErrorHandler.LogWrite(si, New XFException(si, ex)) End Try End Function End Class End Namespace Now you need to create a Data Management job that will kick your Extender BR. And last but not least you end up with your Dashboard!8.5KViews45likes11CommentsUnleashing the Power of OneStream Event Handlers: Enhancing User Experience and Efficiency
5 MIN READ Unlocking the Potential of OneStream Event Handlers Hey there! Thanks for dropping by to read about OneStream Event Handlers. If you're looking to supercharge your application's capabilities, you've come to the right place. Let's dive into the world of Event Handlers and discover how they can take your OneStream experience to the next level.3KViews25likes0CommentsGoodbye, and thanks for all the fish 🙂
From May 1st, my role in OneStream will change significantly (for the better!); unfortunately, this means I will step down as Community Moderator. Over the last 20 months or so it's been a lot of fun, interacting with all of you on forums while trying to move OneCommunity forward in a few different ways. So fun, in fact, that I don't know if I will be able to restrain myself from posting anyway 😅 (as an ordinary onestreamer from now on, of course). The good news is that the community is large enough, nowadays, that on most days I already have nothing to do. There are plans in place to guarantee continuity for the behind-the-scenes tasks (handling abuse alerts, ensuring posts are filed on the right boards, etc), while a new moderator (or team of moderators) is appointed. akloepfer will always be around anyway, making things work quietly in the shadows. I will be at Splash next month, happy to talk about OneCommunity as well as anything else - except hockey, I really don't know anything about that. All the best, Jack1.5KViews21likes2CommentsData Processing and Performance - A comprehensive guide of tables, and design
Overview To maintain well performing application, one must understand how the underlying database works and more importantly its limitations. Understanding how a system works, allows designers and administrators to create reliable, stable, and optimal performing applications. This white paper is intended to guide the design of those optimal data processing strategies for the OneStream platform. First, this document will provide a detailed look at the data structures used by the stage engine as well as those used by the in-memory financial analytic engine, providing a deep understanding of how the OneStream stage engine functions in relation to the in-memory financial analytic engine. The relationship between stage engine data structures and finance engine data structures will be discussed in detail. Understanding how data is stored and manipulated by these engines will help consultants build OneStream applications that are optimized for high-volume data processing. Second, the workflow engine configuration will be examined in detail throughout the document since it acts as the controller / orchestrated of most tasks in the system. The workflow engine is the primary tool used to configure data processing sequences and performance characteristics in an OneStream application. The are many different workflow structures and settings that specifically relate to data processing and these settings will be discussed in relation to the processing engine that they impact. Finally, this document will define best practices and logical data processing limits. This will include suggestions on how to create workflow structures and settings for specific data processing workloads. With respect to data defining processing limits, this document will help define practical / logical data processing limits in relation to hard/physical data processing limits and will provide a detailed explanation of the suggested logical limits. This is an important topic because in many situations the physical data processing limit will accept/tolerate that amount of data that is being processed, but the same data may be able to be processed in a much more efficient manner by adhering to logical limits and building the appropriate workflow structures to partition data. These concepts are particularly important because they enable efficient storage, potential parallel processing and high-performance reporting/consumption when properly implemented. Conclusion Large Data Units can create problems for loading, calculating, consolidating, and reporting data. This really is a limitation of what the hardware and networks can support. Your design needs to consider this. But from this paper, I hope you can take away some options to relieve some of the pressure points that could appear.What is the difference between ONECommunity and OneStream Champions?
As many of our members are members of OneStream Champions we thought it would be good to explain the difference between the two areas. OneStream Champions is a place for the community to engage in promoting OneStream, while creating stronger relationships with our global network of customers and partners. Earn rewards along the way as you complete tasks such as sharing a LinkedIn post or answering a survey. ONECommunity is a place for the community to go to engage in asking and answering and searching for technical questions and answers. The ONECommunity is monitored to answer those questions while the Champions area is more social in nature. We want to have the proper place for content and questions about the product be contained in ONECommunity so there is one place to search for those answers. OneStream Champions mission is to elevate the voice of the OneStream community, and promote advocacy of OneStream in the market, through fun and rewarding engagement activities. OneStream Champions is a place for customers and partners to connect, network, and share the benefits of the OneStream platform. ONECommunity mission is to provide one central source for all customers, employees and partners to communicate and build relationships and find answers to their questions and documentation on all product features and training materials.4.3KViews18likes0CommentsHow to train end users in OneStream using Train Me?
4 MIN READ OneStream has many great functionalities for your end users. And as a OneStream customer or partner, there is much information available to teach you how the system operates. But how do you train your end users? Preferably in a way that is user friendly and not too time consuming, both for you and the end user? The MarketPlace has two solutions, which combined will provide your end users with a range of training videos. How can you use these apps to train your end users?2.3KViews15likes0Comments