ContributionsMost RecentMost LikesSolutionsRe: How do I change a parameter value in a dashboard? "I cant really get it to work. I have a combo box, but its is not showing the value of the parameter in the box. Just the True False in the drop down list." If the parameter bound to your combobox...Re: Unable to set the CreditAmount in JournalLineItem for journals created with Business Rule It might be better to use DecimalAndNoData objects to assign JournalLineItem.DebitAmount and JournalLineItem.CreditAmount. I don't think you can directly assign a decimal value to these. ...Re: Report error for just 1 user? The most important question here is "What happened a week ago?" what's different? The error looks like the user doesn't have access to part of a dashboard being displayed. Re: TableView Insert Limit Yes, TableView NumberOfEmptyRowsToAdd is hard capped at 100. Re: Identifying API Parameters for OneStream Audit Log Export via Postman I would avoid the REST API for this and write a simple Extender business rule that queries the audit tables and puts that data in table(s) staged in your local RDBMS for reporting as needed. Referen...Re: SQL in BR gets syntax errors, but runs from Data Adapter Nice catch! Do yourself a favor and stop using StringBuilder for sql queries. This is a poor coding example set by OneStream. Write better, more readable code by simply using a String for your nic...Re: SQL in BR gets syntax errors, but runs from Data Adapter Very difficult to help or troubleshoot without seeing the actual code. The error suggests you have an extra trailing comma somewhere in your SQL. Re: C# - is it now widely used for BRs? Coming from a organization that is both services and a software company... 1) Is C# now widely used for Business Rules? No. VB.net is still preferred by most finance/functional/consultants because ...Re: Sign Flip for Account in Transformation Rule (Complex Expression) Or you can modify the query in the source system to flip the sign. With integrations, this has generally been my approach. Re: Dashboard component/business rule AFAIK not possible. OneStream is proprietary UI components that lack the discreet event handling needed for your requirement. You would have to make a user initiated button click round trip to a bu...