db_pdxValued ContributorJoined 4 years ago266 Posts200 LikesLikes received55 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsRe: Issue in Web Content and File Viewer component to directly open a HTML file in a browser Love the idea of HTML interfaces, do you have any more details you can share? What framework (if any)? How will it interface with the app servers? Is there an alpha/beta program customers can join? T...Re: Issue in Web Content and File Viewer component to directly open a HTML file in a browser Ooo, bury that lede! 😉 Please report back for those of us who won't be at Splash. Re: Extract dbo.vStageSourceAndTargetDataWithAttributes data to csv or txt Hi fc: if you are already planning to have a dashboard that the end user accesses, you can display the data in a generic grid view component. Users can then Right-Click > Export > To CSV. We put this...Re: Hide Tabs in Dashboard Hi Shubham0512: this can be accomplished but requires the use of DynamicDashboard components. Instead of adding the subdashboards directly to your tabbed dashboard in the GUI. You'll add them via cod...Re: ExecuteCustomCalculateBusinessRule in parallel I'll suggest: BRApi.Utilities.StartDataMgmtSequence(...) We use this inside a 'for each' for executing multiple workflows in parallel by looping over a list profiles/parameters. This calls ea...Re: Is there a way to hide/show columns based on combo box value selection? Hi NitishKrishB: this can be achieved with standard header formats and a simple conditional logic check. In the variance column of your cube view > Header Format: If (|!YourComboBoxParameter!| =...Re: Is it possible to extract(as xml) a Maintenance Unit and it's components using extensibility rule? Does it have to be a BR? This is exactly what XFProject files solve: the export and import of full maintenance units with as little as 5 lines of xml. Re: Report Books - If Statement Does it work with a basic MemberExpansion of Base? The only thing I can think is that the .Base.Where(Text5 = 4010) might need quotes. Meaning: .Base.Where(Text5 = '4010'). Re: Report Books - If Statement Hi jwagner: feels like you're close. If its working in a CubeView/QuickView then it feels like a syntax issue when using it in the book. Try hardcoding values for everything first before switching to...Re: Report Books - If Statement Hi jwagner: can you share the syntax you are using from your cube view? I'd check that first. For more formal debugging: you could temporarily add some logging before and after the databuffer is pu...