ContributionsMost RecentMost LikesSolutionsRe: Question: Is there a way to clean up sub-folders within Batch? This was very helpful! I repurposed your code snippet to delete Data Management Export files from File Share. From your snippet, you just need to change the folderPath string on row 1 to referenc...Re: Guided Reporting Duplicate Param Dialogue Box Showing on Run or Param Change I'm wondering if this is a bug in v8.4? I did some testing of my own and am seeing the same behavior. I get the same parameter pop-up regardless of if my parameters are in the same workspace (Defau...Re: FX Rate Lock/Unlock Bug Try logging out and logging back in. I think when I had this issue it was a user interface issue. I believe this is the case because I was able to see the period was unlocked via the =XFIsFxRateLoc...Re: Hardcode number in Cubeview If you really want a number hardcoded, you can simply put in your Member Filter GetDataCell() and within the parenthesis, place the value to be hardcoded. Re: Getting an error when calling an assemblies from DM step Could it be as simple as misspelling "Workspace" at the beginning of your XFBR? Error processing Data Management Step 'Allocations_AllAccountBkt_Step'. Invalid parameter. Time Filter, #ERROR: XFBR...Re: Lock one year in two years Forecast Take a look at the "Number of No Input Periods Per Workflow Unit" setting on the scenario you want to lock inputs from. If you want to restrict the full year, enter 12 in that field. Re: How to find Entity's Currency in Application Database Tables Thanks - here's how I ultimately wrote the code. Added dummy column in my SQL query. sql.AppendLine(", CAST('' as VARCHAR) as [Ent Curr] ") Then was able to return the currency here. ...Re: How to find Entity's Currency in Application Database Tables I'm writing this within a Spreadsheet Business Rule, so I can't steal your code exactly as it's written. Basically, I have a SQL query returning data from the XFW_PLP_Plan table. I've also added a ...Re: How to find Entity's Currency in Application Database Tables Thanks, this was the path I was going down, but hadn't run across that parameter you mentioned. Looking at the PropertyID field in the MemberProperty table, I'm noticing that only foreign (in my c...How to find Entity's Currency in Application Database Tables I'm working on a custom Table View that returns People Planning Plan Data for our users. The new requirement is to also bring in the Currency of the data. This means I need to bring in the Currency ...Solved