<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sdmxcloud.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vmurrell</id>
	<title>Fusion Registry Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sdmxcloud.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vmurrell"/>
	<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/Special:Contributions/Vmurrell"/>
	<updated>2026-05-03T09:35:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLDataLookup_and_FXLDataPeriod_Functions&amp;diff=8235</id>
		<title>FXLDataLookup and FXLDataPeriod Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLDataLookup_and_FXLDataPeriod_Functions&amp;diff=8235"/>
		<updated>2026-04-20T17:22:46Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Parse error */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Functions Reference FXLData]] &lt;br /&gt;
Introduced in H1.3.0.03 (January 2026). &lt;br /&gt;
&lt;br /&gt;
== Fusion XL Data - FXLDataLookup and FXLDataPeriod Formulas ==&lt;br /&gt;
=== Context ===&lt;br /&gt;
To date, FXLData has been used primarily to generate data cubes in Excel from a Fusion Registry by applying user‑defined selection criteria. The add‑in issues SDMX REST queries to the Fusion Registry and renders the results as a structured grid, typically one series per row (time across columns) or one series per column, so analysts can work with a familiar worksheet layout.&lt;br /&gt;
&lt;br /&gt;
=== Problem ===&lt;br /&gt;
The current workflow is geared to building full grids/cubes from Fusion Registry; getting a single value or a small ad‑hoc slice often means running a broader query and then indexing/filtering the filled grid, which adds unnecessary steps for simple asks. &lt;br /&gt;
&lt;br /&gt;
=== Solution ===&lt;br /&gt;
2 New Formulas have been introduced:&lt;br /&gt;
&lt;br /&gt;
* FXLDataLookup retrieves targeted measures directly from an existing root grid, returning a single value, short list, or small table. It also supports simple arithmetic, period wildcards, optional auto‑refresh, and explicit error messages. &lt;br /&gt;
* FXLDataPeriod returns the minimum and/or maximum SDMX periods found on a specified root grid so lookups can use dataset bounds without manual date handling (with sheet‑not‑found error handling).&lt;br /&gt;
&lt;br /&gt;
==== FXLDataLookup Formula ====&lt;br /&gt;
FXLDataLookup reads values from an existing root grid on a specified worksheet and returns the measures for the given series key(s) and period(s) as a &lt;br /&gt;
* single value&lt;br /&gt;
* short list&lt;br /&gt;
* or small table&lt;br /&gt;
depending on how many items and periods you pass.&lt;br /&gt;
&lt;br /&gt;
===== Syntax =====&lt;br /&gt;
FXLDataLookup(items, periods, sheetName, [autoRefresh], [errorMessages])&lt;br /&gt;
&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
&lt;br /&gt;
'''items''' &lt;br /&gt;
* A single series key (text) &lt;br /&gt;
* a range of keys &lt;br /&gt;
* or an expression combining series keys and numbers with supported operators. &lt;br /&gt;
'''periods'''&lt;br /&gt;
* A single period&lt;br /&gt;
* a range of periods&lt;br /&gt;
* a wildcard (e.g., &amp;quot;2001*&amp;quot;)&lt;br /&gt;
'''sheetName''' - The worksheet containing the root grid with the expected header/layout&lt;br /&gt;
'''[autoRefresh]''' &lt;br /&gt;
* OPTIONAL, Defaults to FALSE &lt;br /&gt;
* TRUE/FALSE. When TRUE, forces updates only if Excel is not in automatic calculation mode. &lt;br /&gt;
'''[errorMessages]''' &lt;br /&gt;
* OPTIONAL, Defaults to FALSE &lt;br /&gt;
* TRUE/FALSE. When TRUE, returns descriptive messages (e.g., “Key Not Found”, “Non‑numeric Value”, “Divide By Zero”, “Invalid Power”, “Parse Error”).&lt;br /&gt;
&lt;br /&gt;
===== Supported Operators - items parameter =====&lt;br /&gt;
'''Arithmetic'''&lt;br /&gt;
* + (add) &lt;br /&gt;
* - (subtract) &lt;br /&gt;
* * (multiply) &lt;br /&gt;
* / (divide) &lt;br /&gt;
* ^ (power) &lt;br /&gt;
* Standard arithmetic precedence applies; &lt;br /&gt;
* parentheses can be used to control evaluation order &lt;br /&gt;
&lt;br /&gt;
'''Unary signs:'''&lt;br /&gt;
* leading -&lt;br /&gt;
* and + are supported&lt;br /&gt;
&lt;br /&gt;
'''Exponent constraint''': for ^, the right‑hand exponent must be numeric, either a literal or a cell reference to a numeric value; using a series key on the right‑hand side raises Invalid Power. The left‑hand/base may be a series key.&lt;br /&gt;
&lt;br /&gt;
===== Wildcards - periods parameter =====&lt;br /&gt;
'''Period wildcards''' let you pass a pattern like &amp;quot;2001*&amp;quot;; the function returns that period and all later periods already present in the referenced root grid (e.g., 2001, 2002, 2003).&lt;br /&gt;
&lt;br /&gt;
==== FXLDataPeriod Formula ====&lt;br /&gt;
FXLDataPeriod scans an existing root grid on a specified worksheet and returns the SDMX period(s) available in that grid, either the minimum, the maximum, or both, depending on the mode you pass.&lt;br /&gt;
&lt;br /&gt;
===== Syntax =====&lt;br /&gt;
FXLDataPeriod(sheetName, [what], [errorMessages])&lt;br /&gt;
&lt;br /&gt;
===== Parameters =====&lt;br /&gt;
'''sheetName''' - The worksheet containing the root grid with the expected header/layout&lt;br /&gt;
'''what'''&lt;br /&gt;
* OPTIONAL, Defaults to BOTH&lt;br /&gt;
* MIN - returns the first period&lt;br /&gt;
* MAX - returns the last period&lt;br /&gt;
* BOTH - returns both the first and last periods&lt;br /&gt;
'''errorMessages''' &lt;br /&gt;
* OPTIONAL, Defaults to FALSE &lt;br /&gt;
* TRUE/FALSE. When TRUE, returns descriptive messages (e.g., “Grid Not Found”).&lt;br /&gt;
&lt;br /&gt;
=== FXLDataLookup Examples ===&lt;br /&gt;
&lt;br /&gt;
The examples below are based on the following root grid sheet.&lt;br /&gt;
&lt;br /&gt;
[[File:Example-spreadsheet.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
[[:File:Example-Spreadsheet-V2.zip | Example Spreadsheet]] Download and extract from the zip file to obtain an Excel version of the spreadsheet.&lt;br /&gt;
&lt;br /&gt;
==== Basics ====&lt;br /&gt;
Single value (one series + one period)&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 99&lt;br /&gt;
&lt;br /&gt;
'''Why''': Pulls the 2002 value for the series key.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
==== Multiple series (range) for one period ====&lt;br /&gt;
=FXLDataLookup(RootGrid!G5:G8,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
'''Result (row‑wise):'''&lt;br /&gt;
&lt;br /&gt;
* SC1:STERLING:CHINA → 14&lt;br /&gt;
* SG1:STERLING:GERMANY → 333&lt;br /&gt;
* EI1:EURO:IRELAND → 15&lt;br /&gt;
* EG1:EURO:GERMANY → 26&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(RootGrid!G5:G8,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
'''Result (row‑wise):'''&lt;br /&gt;
&lt;br /&gt;
SC1:STERLING:CHINA → 14&lt;br /&gt;
SG1:STERLING:GERMANY → 333&lt;br /&gt;
EI1:EURO:IRELAND → 15&lt;br /&gt;
EG1:EURO:GERMANY → 26&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
==== Multiple series × multiple periods (ranges) ====&lt;br /&gt;
=FXLDataLookup(RootGrid!G5:G8, RootGrid!I2:J2, &amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result (examples):'''&lt;br /&gt;
&lt;br /&gt;
* 2002 → 14, 333, 15, 26&lt;br /&gt;
* 2003 → 45, 55, 12, 45&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
==== Auto‑refresh on (even if Excel calc mode is Manual) ====&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 99 (same value; it just auto‑refreshes) [FXLDataLookupSamples | Excel]&lt;br /&gt;
&lt;br /&gt;
===== Arithmetic with series =====&lt;br /&gt;
&lt;br /&gt;
Addition&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND+EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Result: 125 (99 + 26) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Subtraction'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND-EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 73 (99 − 26) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Multiplication'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND*EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Result: 2574 (99 × 26)&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Division'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND/EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 3.81 (99 ÷ 26) &lt;br /&gt;
&lt;br /&gt;
===== Order of operations, exponent, parentheses, unary =====&lt;br /&gt;
'''Exponent with numeric literal'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND*2^2&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 396 (99 × 2²)&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Parentheses respected'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;(SE1:STERLING:ENGLAND)*(10-2)&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Result: 792 (99 × (10−2)) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Unary minus'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;-SE1:STERLING:ENGLAND*2&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': -198 (−99 × 2) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Unary plus'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;+(SE1:STERLING:ENGLAND-10000)&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': -9901 (+(99−10000)) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Multiple operands in one go'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND*SE1:STERLING:ENGLAND-SI1:STERLING:IRELAND/EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 9799.62&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Wildcards (period expansion) =====&lt;br /&gt;
'''Expand 2001* to all matching periods'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(RootGrid!G5:G8, &amp;quot;2001*&amp;quot;, &amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''' (grid excerpt):&lt;br /&gt;
&lt;br /&gt;
* 2001 → 16, 76, 11, 11&lt;br /&gt;
* 2002 → 14, 333, 15, 26&lt;br /&gt;
* 2003 → 45, 55, 12, 45&lt;br /&gt;
(Order aligns with series in RootGrid!G5:G8)&lt;br /&gt;
&lt;br /&gt;
===== Period helpers (using SDMXPeriod(...) inside) =====&lt;br /&gt;
'''Min period'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;, SDMXPeriod(&amp;quot;RootGrid&amp;quot;,&amp;quot;MIN&amp;quot;), &amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Result: 13 (value at min period 2001) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Max period'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;, SDMXPeriod(&amp;quot;RootGrid&amp;quot;,&amp;quot;MAX&amp;quot;), &amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 45 (value at max period 2003)&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Min and Max (2‑cell spill)'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;, SDMXPeriod(&amp;quot;RootGrid&amp;quot;), &amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''' (two cells): 13, 45 &lt;br /&gt;
&lt;br /&gt;
'''Errors''' &lt;br /&gt;
'''Sheet not found'''&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;NonExistantRootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Sheet Not Found &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Key not found (typo in series key)'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLANlD&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Key Not Found &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Non‑numeric value in grid'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SI1:STERLING:IRELAND&amp;quot;,&amp;quot;2003&amp;quot;,&amp;quot;RootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Non-numeric Value SI1:STERLING:IRELAND (cell value is g) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Grid not found (bad RootGrid layout)'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGridAlternate&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Grid Not Found (header row not on row 2)&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Divide by zero'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND/(EG1:EURO:GERMANY-26)&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Divide By Zero (26−26 = 0) [FXLDataLookupSamples | Excel]&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Invalid power'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND^(EG1:EURO:GERMANY-26)&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Invalid Power (exponent expression based on series key is invalid, use a numeric literal or numeric cell) &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
'''Parse error (operator typo)'''&lt;br /&gt;
&lt;br /&gt;
=FXLDataLookup(&amp;quot;SE1:STERLING:ENGLAND**SE1:STERLING:ENGLAND-SI1:STERLING:IRELAND/EG1:EURO:GERMANY&amp;quot;,&amp;quot;2002&amp;quot;,&amp;quot;RootGrid&amp;quot;,FALSE,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Parse Error&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== FXLDataPeriod Examples ===&lt;br /&gt;
The examples below are based on the following root grid sheet.&lt;br /&gt;
&lt;br /&gt;
[[File:Root-grid.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===== Minimum period (single value) =====&lt;br /&gt;
&lt;br /&gt;
=SDMXPeriod(&amp;quot;RootGrid&amp;quot;,&amp;quot;MIN&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 2001&lt;br /&gt;
Why: Returns the earliest (minimum) SDMX period available on the root grid sheet.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Maximum period (single value) =====&lt;br /&gt;
&lt;br /&gt;
=SDMXPeriod(&amp;quot;RootGrid&amp;quot;,&amp;quot;MAX&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''': 2003&lt;br /&gt;
Why: Returns the latest (maximum) SDMX period available on the root grid sheet.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Range (min and max — two‑cell spill) =====&lt;br /&gt;
&lt;br /&gt;
=SDMXPeriod(&amp;quot;RootGrid&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''Result''' (two cells): 2001, 2003&lt;br /&gt;
'''Why''': Returns both the MIN and MAX SDMX periods from the root grid sheet. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Error: sheet not found =====&lt;br /&gt;
&lt;br /&gt;
=SDMXPeriod(&amp;quot;NonExistantRootGrid&amp;quot;,,TRUE)&lt;br /&gt;
&lt;br /&gt;
'''Result''': Sheet Not Found&lt;br /&gt;
'''Why''': The specified sheet name doesn’t exist, so the function returns a “Sheet Not Found” error.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting ===&lt;br /&gt;
===== MIN period isn’t the earliest in the grid =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': SDMXPeriod(&amp;quot;…&amp;quot;,&amp;quot;MIN&amp;quot;) returns the first period it finds in the grid header, which is typically (but not guaranteed to be) the earliest.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Sort your period headers left→right so the earliest period is first. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== MAX period isn’t the latest in the grid =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': SDMXPeriod(&amp;quot;…&amp;quot;,&amp;quot;MAX&amp;quot;) returns the last period it finds in the grid header, which is typically (but not guaranteed to be) the latest.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Sort your period headers left→right so the latest period is last. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== FXLDataLookup or SDMXPeriod behaves oddly in “vertical mode” =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': Both functions expect a horizontal grid (periods across columns) like the RootGrid examples; vertical layouts aren’t supported.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Render the root grid with periods in the header row and values beneath them.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Grid not found ===== &lt;br /&gt;
&lt;br /&gt;
'''Why''': The grid header (dimensions + period labels) must be on row 2 of the root sheet; otherwise the grid isn’t detected.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Move headers to row 2 on the root sheet. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Sheet not found =====&lt;br /&gt;
 &lt;br /&gt;
'''Why''': The sheet name you passed doesn’t match an actual worksheet.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Use the exact sheet name that exists in the workbook. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Key not found =====&lt;br /&gt;
&lt;br /&gt;
Why: The series key is misspelled or doesn’t exist in the root grid’s Series column.&lt;br /&gt;
Fix: Copy–paste the key from the grid (avoid typos) and ensure the root grid includes full series keys. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Expected multiple cells, but only one cell returned =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': Multi‑cell (“spilled”) results require a modern Excel (later than 2016) that supports dynamic arrays.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Invalid power =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': The right‑hand side of ^ must be a numeric literal or a reference to a numeric cell; a series‑derived expression/key is invalid (see example using …^(EG1:EURO:GERMANY-26)).&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Replace the exponent with a number (e.g., ^2) or a cell that contains a number. &lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Non‑numeric value in grid =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': The target cell in the root grid holds text (e.g., g), so numeric calculation fails.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Correct the source cell to a number or point the formula to a numeric period.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Divide by zero =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': Your denominator evaluates to 0 (e.g., EG1:EURO:GERMANY - 26 = 0).&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Choose a non‑zero reference.&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------------&lt;br /&gt;
===== Parse error =====&lt;br /&gt;
&lt;br /&gt;
'''Why''': The items/expression string has a syntax error (operator typo, or missing parenthesis).&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Check operators and parentheses; compare against a working example and re‑enter carefully.&lt;br /&gt;
&lt;br /&gt;
===== Operations on multiple reference cells ===== &lt;br /&gt;
Require using ampersands and quotes.&lt;br /&gt;
'''Why''': When performing operations like summing or multiplying without ampersands and quotes, Excel evaluates the referenced cells before passing the value to FXLDataLookup, which results in an incorrect input for the formula.&lt;br /&gt;
&lt;br /&gt;
'''Fix''': Use ampersands and quotes, e.g. FXLDataLookup(E1&amp;amp;&amp;quot;+&amp;quot;&amp;amp;F1;D1;&amp;quot;דוגמאות&amp;quot;;FALSE;TRUE)&lt;br /&gt;
&lt;br /&gt;
This ensures the first parameter is passed as a string and correctly processed by the formula.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8234</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8234"/>
		<updated>2026-04-01T13:43:40Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Please refer to the Change Log(s) and Release Notes for more detail.&lt;br /&gt;
&lt;br /&gt;
==P1.3.1.00_RFS_29.05.26 Estimated release date May 25, 2026 - Patch ==&lt;br /&gt;
Provisional contents:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2602 - [Fusion Security Manager]: Modification to security rules.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1869 - [Fusion Data Browser]: Implementation of Cookies Privacy Policy&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2614 - [Fusion Data Browser]: Comments - need to be available in 2 languages&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2615 - [Fusion Data Browser]: Editing Languages in Pre Defined Queries - not working as expected.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2674 - [Fusion Registry]: Modification to Validation B and PRE_BREAK_VALUE&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2675 - [Fusion Registry]: Modification to Attachment Constraints&lt;br /&gt;
&lt;br /&gt;
RFS-2676 - [Fusion Registry]: Mapping Modification&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2677 [Fusion Registry]: Structure Set Modification&lt;br /&gt;
&lt;br /&gt;
RFS-425 - [Fusion Data Browser]: Change method of Language Selection &lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 Estimated release date June 6, 2026 - Full Release ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
==P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch ==&lt;br /&gt;
Customer driven enhancements to Fusion Data Browser.&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8233</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8233"/>
		<updated>2026-04-01T13:40:17Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Please refer to the Change Log(s) and Release Notes for more detail.&lt;br /&gt;
&lt;br /&gt;
==P1.3.1.00_RFS_29.05.26 Estimated release date May 25, 2026 - Patch ==&lt;br /&gt;
Provisional contents:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2602 - [Fusion Security Manager]: Modification to security rules.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1869 - [Fusion Data Browser]: Implementation of Cookies Privacy Policy&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2614 - [Fusion Data Browser]: Comments - need to be available in 2 languages&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2615 - [Fusion Data Browser]: Editing Languages in Pre Defined Queries - not working as expected.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2674 - [Fusion Registry]: Modification to Validation B and PRE_BREAK_VALUE&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2675 - [Fusion Registry]: Modification to Attachment Constraints&lt;br /&gt;
&lt;br /&gt;
RFS-2676 - [Fusion Registry]: Mapping Modification&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-2677 [Fusion Registry]: Structure Set Modification&lt;br /&gt;
&lt;br /&gt;
RFS-425 - [Fusion Data Browser]: Change method of Language Selection &lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 Estimated release date June 6, 2026 - Full Release ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
==P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8232</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8232"/>
		<updated>2026-04-01T13:07:18Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Please refer to the Change Log(s) and Release Notes for more detail.&lt;br /&gt;
&lt;br /&gt;
==P1.3.1.00_RFS_29.05.26 Estimated release date May 25, 2026 - Patch ==&lt;br /&gt;
Provisional contents:&lt;br /&gt;
RFS-2602 - Modification to FSM security rules.&lt;br /&gt;
RFS-1869 - [Fusion Data Browser]: Implementation of Cookies Privacy Policy&lt;br /&gt;
RFS-2614 - [Fusion Data Browser]: Comments - need to be available in 2 languages&lt;br /&gt;
RFS-2615 - [Fusion Data Browser]: Editing Languages in Pre Defined Queries - not working as expected.&lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 Estimated release date June 6, 2026 - Full Release ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
==P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_Change_Log&amp;diff=8231</id>
		<title>FXLData Change Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_Change_Log&amp;diff=8231"/>
		<updated>2026-03-12T15:32:45Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
'''Excel Command'''&amp;lt;br&amp;gt;&lt;br /&gt;
 =FXLDataVersion(&amp;quot;changelog&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.04_RFS_13.03.26 Released March 13, 2026 - Hotfix ==&lt;br /&gt;
RFS-2610 - Enhancement - While computing the aggregates, an issue occurred due to the presence of non‑numeric values in the OBS_VALUES field - SUP-307250&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.03_RFS_30.01.26 - Released 30.01.2026 =&lt;br /&gt;
RFS-2094: - Improvement - Some users were experiencing performance issues when Excel was closed after using FXLData.&lt;br /&gt;
&lt;br /&gt;
RFS-2486: - Enhancement - new functions FXLDataLookUp and FXLDataPeriod introduced. [https://wiki.sdmxcloud.org/FXLData_-_New_Functions Read more in this article.]&lt;br /&gt;
&lt;br /&gt;
RFS-1906: - Improvement - Changes to streamline diagnostic tool and introduction of System Info button.&lt;br /&gt;
&lt;br /&gt;
RFS-2516: - Compatibility - The components that have changed since H1.3.0.02&lt;br /&gt;
[https://wiki.sdmxcloud.org/What%27s_new#Compatability Read more in this article.]&lt;br /&gt;
* FXL Data&lt;br /&gt;
* and Fusion Data Browser&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.02_RFS_08.12.25 - Released on December 8, 2025 =&lt;br /&gt;
RFS-1866: - Improvement -  Optimized the automatic reference clean-up logic to process only the requisite first cell of FXLData named ranges, reducing runtime dramatically.&lt;br /&gt;
&lt;br /&gt;
RFS-1838: - Bug Fix - Start/End period and more filters not working in FXLData with auto aggregations&lt;br /&gt;
= H1.3.0.01_RFS_10.10.25 - Released on October 9, 2025 =&lt;br /&gt;
RFS-1860: - Bug Fix - Performance improvement for large datasets.&lt;br /&gt;
&lt;br /&gt;
RFS-1830: Bug Fix - Filters for start date and end date incorrectly applied for the v1 endpoint when having the min parameter passed in the request.&lt;br /&gt;
&lt;br /&gt;
== R.3_RFS_29.08.2025 (Due for Release August 29, 2025) ==&lt;br /&gt;
&lt;br /&gt;
RFS-1761: Prevent 'Unable to refresh' error when resultant grid has one row.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1746: Fixed an issue where non-selectable parent code labels in hierarchical code lists were unnecessarily truncated despite available space.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-277: Fix introduced to enforce edit state on the query builder form.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1548: Fixed issue where clearing search text caused dropdown error due to attempting to select a non-existent first item.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1549: Added cleanup behaviour that removes surplus rows and columns within a defined margin after any FXL data formula runs. This improves performance and stability, particularly when switching between horizontal and vertical views.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-274: Text that includes line breaks (such as paragraphs) is now correctly imported into a single cell, rather than being split across multiple rows.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1474: Hide start/end date labels in Query Builder and REST Arguments screens when dates can't be precomputed.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1531: Wizard dropdown fix for dataflow name rendering in right to left mode.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-283: Introduction of the Rest Arguments Builder Form.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-1262: Remove truncation and introduce pagination to Query Builder screen.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RFS-279: Request for enhanced ability of FXLData to view/show dataflow names in query builder selection.&lt;br /&gt;
&lt;br /&gt;
RFS-1617: The max series parameter was always returning one additional result.&lt;br /&gt;
&lt;br /&gt;
RFS-1626: The order measure rest parameter was not operating correctly and had no effect on the ordering of the time csv-series or csv-ts formats. This issue has been resolved but limited to cases in which the time period is the selected.&lt;br /&gt;
&lt;br /&gt;
RFS-1568: Incorrect horizontal values displayed when custom locale separators, rather than English, were used.&lt;br /&gt;
&lt;br /&gt;
RFS-1460: The label =name was not working as expected.&lt;br /&gt;
&lt;br /&gt;
RFS-1072: A new section has been added ribbon enabling the user to enable logging for diagnostic purposes. Two levels are available, medium and high. For high verbosity logs are unlimited, hence it is advised not to use this option unless absolutely necessary and for brief periods.&lt;br /&gt;
&lt;br /&gt;
== H1.2.0.04_RFS_04.07.2025 (Released July 4, 2025) ==&lt;br /&gt;
&lt;br /&gt;
RFS-1565 - Bug Fix - addressed issue with horizontal amounts losing their decimal point resulting in multiplication of values when custom locale separators used (other than English defaults).&lt;br /&gt;
&lt;br /&gt;
== H1.2.0.02_RFS_07.03.2025 (Released March 7, 2025) ==&lt;br /&gt;
&lt;br /&gt;
RFS-279 - Enhancement - ability to view Dataflows in the Query builder by Name or ID. [[FXL_Data_changes_in_Hotfix_March_2025| Click here for more information]].&lt;br /&gt;
&lt;br /&gt;
== H1.2.0.01_RFS_20.02.25 (Released February 20, 2025) ==&lt;br /&gt;
&lt;br /&gt;
RFS-1359 - Bug Fix - Changing the Daily Format back to original state was not working as expected. Due to other changes in FXLData, this has now been rectified via the Refresh button. Support Ticket - 409849. &lt;br /&gt;
&lt;br /&gt;
RFS-1324 - Bug Fix - The TimeSeriesFormat parameter was available to the FXLData and FXLDataV formulas but was absent in other variations such as: - FXLDataUrl -&lt;br /&gt;
FXLDataUrlV - FXLDataUrlFact. The TimeSeriesFormat parameter was made available to all variations of the FXLData formula. Support Ticket - 397682. &lt;br /&gt;
&lt;br /&gt;
RFS-902 - Tool Upgrade - A new section was added to the plugin ribbon. The user can enable /disable diagnostic, and decide on the level of verbosity (medium/high) For&lt;br /&gt;
medium verbosity logs are limited to 40000 characters to prevent memory issues(around 15-20 request logs). For high verbosity logs are unlimited, hence it is&lt;br /&gt;
advised not to use this option unless absolutely necessary and for brief periods. Please also be aware of any sensitive information that the logs will render before sharing. [[FXL_Data_changes_in_Hotfix_February_2025| Click here from more information.]]&lt;br /&gt;
&lt;br /&gt;
RFS-878 - Bug Fix - Unable to extract data using Excel 2016.- Issue fixed and compatibility is supported from Excel 2016 to 2020. Support Ticket - 378098.&lt;br /&gt;
&lt;br /&gt;
RFS-772 - Improvement - Changed =FXLDataVersion(&amp;quot;changelog&amp;quot;) to show changlog starting from the newest changes instead of starting from the oldest.&lt;br /&gt;
&lt;br /&gt;
RFS-382 - Bug Fix -  Previously it was observed that in some scenarios registry returned a 404 rather than a 401 http response to fxl data when a user was unauthenticated. This caused fxl data to suppress the login dialog and offer no means for the user to remedy the situation. - Now, if FXL Data detects a 404 response it will display the login prompt on the first try thus providing the user an opportunity to enter valid credentials and continue with the successful processing of web service interactions with registry.&lt;br /&gt;
&lt;br /&gt;
RFS-278 - Bug Fix - Previously, inconsistencies were observed between horizontal and vertical mode. - This has been resolved. Support Ticket - 333871.&lt;br /&gt;
&lt;br /&gt;
RFS-109 - Change - Automatic Refresh could cause performance issues with large datasets - The automatic process has been removed and now, Refreshes must be performed manually. Support Ticket - 334024 &amp;amp; 397658.&lt;br /&gt;
&lt;br /&gt;
== R1.1.0.00_RFS_05.07.24 ==&lt;br /&gt;
* RFS-262: Improved performance of the dataflow selection on the wizard form&lt;br /&gt;
* RFS-280: Introduced a feature that facilitates the conversion of the received TIME_FORMATs to daily&lt;br /&gt;
&lt;br /&gt;
== 1.2.6 (24 February 2023) ==&lt;br /&gt;
* FXLData: Fixed bug returning the incorrect number of series for 'basket' queries (virtual dataflows)&lt;br /&gt;
* FXLData: Fixed bug incorrectly reporting the number of available / retrieved series in the resultset header&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.5 (23 February 2023) ==&lt;br /&gt;
* FXLData: fixed bug in [user]@ syntax handler that mangled the URL if an @ symbol is used in the Dataflow ID for instance&lt;br /&gt;
* Legacy Mode: modified application event handling to make control over automatic calculation more robust&lt;br /&gt;
* Fusion Registry refreshable Excel workbooks: fixed bug preventing workbooks from being refreshed on open&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.4 (18 November 2022) ==&lt;br /&gt;
* FXLData: show the REST data API url in the header&lt;br /&gt;
* FXLData: add 'nocc' client-side REST Argument to restrict the resultset time periods to only those with observation values when startPeriod and / or endPeriod are specified&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.3 (14 November 2022) ==&lt;br /&gt;
* Legacy Mode: bug fix displaying N/A under certain circumstances&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.2 (11 November 2022) ==&lt;br /&gt;
* Legacy Mode: bug fix preventing display of datasets with only a single row&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.1 (08 November 2022) ==&lt;br /&gt;
* Legacy Mode: change automatic calculation option to 'off' by default to address general worksheet performance issues&lt;br /&gt;
&lt;br /&gt;
== Version 1.2.0 (05 July 2022) ==&lt;br /&gt;
* Legacy Mode: add Ribbon function to disable automatic calculation to speed bulk changes to worksheets such as deleting large numbers of cells&lt;br /&gt;
&lt;br /&gt;
== Version 1.1.2 (27 June 2022) ==&lt;br /&gt;
* Wizard: fix dataflow search&lt;br /&gt;
&lt;br /&gt;
== Version 1.1.1 (09 June 2022) ==&lt;br /&gt;
* Refreshable worksheets: modified automatic refresh on open to improve reliability of refreshable worksheets&lt;br /&gt;
&lt;br /&gt;
== Version 1.1.0 (30 May 2022) ==&lt;br /&gt;
* FXLData: Support 'un' parameter to force login on refreshable worksheets&lt;br /&gt;
&lt;br /&gt;
== Version 1.0.1 (16 May 2022) ==&lt;br /&gt;
* FXLData: Fixed invalid availability query syntax when working with Fusion Registry 11 and SDMX 3.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 1.0.0 (13 May 2022) ==&lt;br /&gt;
First Public Release&lt;br /&gt;
1.0.1 (16 May 2022)&lt;br /&gt;
* FXLData: Fixed invalid availability query syntax when working with Fusion Registry 11 and SDMX 3.0&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
== Beta Versions ==&lt;br /&gt;
Beta 0.3.3&lt;br /&gt;
* Authentication issues fixed&lt;br /&gt;
Beta 0.3.4&lt;br /&gt;
* Modified parameterised variants to allow no dataflow and a dataflow/series key to be specified in the expression&lt;br /&gt;
Beta 0.3.5&lt;br /&gt;
* JSON / POST data query support for series baskets&lt;br /&gt;
Beta 0.3.6&lt;br /&gt;
* Vertical JSON / POST support&lt;br /&gt;
Beta 0.3.7&lt;br /&gt;
* Fixed bug in URL validator which rejected URLs where the host contains hyphens&lt;br /&gt;
* Fixed bug where URL's of the form crash the API call http://@hostname&lt;br /&gt;
Beta 0.3.8&lt;br /&gt;
* Add workaround for 'aggregate' queries where the availability query does not return the correct series_count&lt;br /&gt;
* =FXLDataV() now takes the same arguments as =FXLData() to ease switching between horizontal and vertical presentations - some arguments are ignored though&lt;br /&gt;
Beta 0.4.0&lt;br /&gt;
* Add ribbon bar Wizard&lt;br /&gt;
Beta 0.4.1&lt;br /&gt;
* Wizard: Removed redundant ribbon bar components&lt;br /&gt;
* Wizard: Added dataflow dropdown refresh&lt;br /&gt;
Beta 0.4.2&lt;br /&gt;
* Wizard: Added defence against JSON being supplied as a literal Expression value - Excel doesn't support that&lt;br /&gt;
* Wizard: Added tool tips&lt;br /&gt;
* Wizard: Corrected tab order&lt;br /&gt;
Beta 0.4.3&lt;br /&gt;
* Wizard: Improved handling of FXLData function execution errors when inserting the function into a sheet&lt;br /&gt;
Beta 0.4.4&lt;br /&gt;
* Wizard: Added checks to verify the correct version of Excel is being used (Microsoft 365 Excel Sept 2018 or later)&lt;br /&gt;
Beta 0.5.0&lt;br /&gt;
* FXLData / Wizard / Refresh: add support for pre-Excel 2018 'legacy mode' where the result array is iterated and inserting into the cells on ribbon button click&lt;br /&gt;
Beta 0.5.1&lt;br /&gt;
* FXLData: Added data query caching to improve performance particularly on legacy refresh where the same query may be executed multiple times&lt;br /&gt;
Beta 0.5.2&lt;br /&gt;
* Purge Cache: Added 'Purge Cache' function to the ribbon bar&lt;br /&gt;
Beta 0.5.3&lt;br /&gt;
* Legacy Mode: legacy functions now automatically refresh on change without using the Ribbon 'Refresh' emulating the behaviour of normal Excel functions to some extent&lt;br /&gt;
* Legacy Mode: added error handling for stack overflows on legacy 'evaulate' where the formula length exceeds the 255 character limit&lt;br /&gt;
Beta 0.5.4&lt;br /&gt;
* Ribbon: Added control over automatic refresh in legacy mode&lt;br /&gt;
* FXLData: Improved caching to avoid caching error results&lt;br /&gt;
* Legacy Mode: Modified application event handling to avoid triggering refresh events where not needed&lt;br /&gt;
Beta 0.5.5&lt;br /&gt;
* Wizard: check each Dataflow for access rights before adding to the dropdown to ensure the list only contains Dataflows for which the user has permissions&lt;br /&gt;
Beta 0.5.6&lt;br /&gt;
* FXLData: Fixed issues with FXLDaatV returning the incorrect number of series (removed paging which is not relevant for vertical and corrected series calcs when using calculated measures)&lt;br /&gt;
* FXLData: Removed API paging due to limited benefit&lt;br /&gt;
* FXLData: Fixed bug resulting in 'Query Error - 0 series retrieved of 0' due to paging errors&lt;br /&gt;
* Wizard: Query Builder - added clear selection button&lt;br /&gt;
* Wizard: Query Builder - show series count for entire dataflow on initialisation&lt;br /&gt;
* Wizard: Query Builder - removed irrelevant TIME_PERIOD tab&lt;br /&gt;
* Wizard: Added REST arguments syntax help&lt;br /&gt;
* Legacy Mode: Stopped screen updating during refresh to improve performance&lt;br /&gt;
Beta 0.5.7&lt;br /&gt;
* Wizard: Query Builder enhanced to grey-out invalid codes as selections are made&lt;br /&gt;
* Wizard: Improved query builder refresh performance&lt;br /&gt;
* Wizard: Improved 'unapplied changes' indicator&lt;br /&gt;
* Wizard: Improved REST API help popup&lt;br /&gt;
Beta 0.5.8&lt;br /&gt;
* FXLData: Trap and gracefully handled Registry data query errors that return no data, but result in HTTP 500 and 'Index:0, Size:0' responses&lt;br /&gt;
* Refresh: Added Refresh Sheet option&lt;br /&gt;
* Ribbon: Moved Refresh and Calculations to Ribbon menus&lt;br /&gt;
Beta 0.6.0&lt;br /&gt;
* Legacy Mode: Modified legacy mode dynamic array emulation to improve performance to that comparable with actual dynamic arrays (legacyRefreshCell refactor - assign resultset arrary directly to range.value instead of iterating one cell at a time)&lt;br /&gt;
* Legacy Mode: Application events initialised in the FXLData Workbook Open event&lt;br /&gt;
* Legacy Mode: Automatic calculation defaulted on true in the FXLData Workbook Open event which improves reliability by avoiding reliance on ribbon initialisation to perform that task&lt;br /&gt;
* FXLData: Corrected duplication of double quotes where they appear in component labels&lt;br /&gt;
Beta 0.6.1&lt;br /&gt;
* Addin: Forces Excel to execute the FXLData formula in cell B2 on workbook open ensuring that refreshable workbooks generated by Fusion Registry refresh as expected on open&lt;br /&gt;
Beta 0.7.0&lt;br /&gt;
* FXLData: Fusion Registry 11 support&lt;br /&gt;
* FXLData: Authentication exception handling bug fixed in all four of the fxldata query execution functions - URL h and v, POST h and v&lt;br /&gt;
* FXLData: Added freshness timestamp to the resultset metrics&lt;br /&gt;
* Wizard: Do not show the wizard for FXLDataURL or FXLDataURLV functions as it is designed for use only with the parameterised function variants&lt;br /&gt;
Beta 0.7.2&lt;br /&gt;
* FXLData: SDMX 3.0 availability API support&lt;br /&gt;
Beta 0.7.3&lt;br /&gt;
* FXLData: Added FXLDataUrlFact() function&lt;br /&gt;
Beta 0.7.4&lt;br /&gt;
* FXLDataUrlFact: Added defence against errors caused where the availability query incorrectly indicates data is available, and the data query returns none&lt;br /&gt;
* FXLDataUrlFact: Added gzip accept encoding to XML dataset GET&lt;br /&gt;
* FXLData: Weakened the URL syntax check to avoid FXLDataURL refreshable sheet calls being rejected as bad URL because of spaces in the 'saveAs' parameter&lt;br /&gt;
Beta 0.7.5&lt;br /&gt;
* FXLData: Fixed issue preventing refreshable worksheets refreshing on open in legacy mode&lt;br /&gt;
* FXLData: Fixed FXLDataUrlFact bug where the wrong number of output columns was estimated under certain circumstances&lt;br /&gt;
Beta 0.7.6&lt;br /&gt;
* Wizard: Added 'Purge Cache on Apply' option&lt;br /&gt;
* Legacy Mode: Fixed bug in legacy mode refresh where resultsets in the same cell on different sheets are deleted on refresh&lt;br /&gt;
Beta 0.7.7&lt;br /&gt;
* Legacy Mode: Changed refresh to clear the contents of the range rather than clear all thus preserving user-applied formatting&lt;br /&gt;
* Legacy Mode: Fixed refresh bug which left redundant ranges where a FXLdata formula was moved, deleted or over written &lt;br /&gt;
* Legacy Mode: Changed refresh behaviour to not delete the range content when an FXLData formula is moved, deleted or over written&lt;br /&gt;
Beta 0.7.8&lt;br /&gt;
* Legacy Mode: Modified sub legacyRefreshCell() to exit immediately if the cell does not contain an FXLData function&lt;br /&gt;
* FXLData: FXLDATA-2 Vertical presentation fails with an 'subscript out of range' inline error when the resultset has one series&lt;br /&gt;
Beta 0.7.9&lt;br /&gt;
* Wizard: Added dataflow quick filter&lt;br /&gt;
* Legacy Mode: Removed the Ribbon Bar option to control automatic refresh on change because setting to 'manual' prevented workbook and sheet refresh because named ranges were not being created&lt;br /&gt;
* Legacy Mode: Fixed 'refreshselectedcell' bug whereby a named range was not being created if the function returns an error thus preventing subsequent workbook and sheet refresh operations&lt;br /&gt;
Beta 0.7.10&lt;br /&gt;
* Wizard: Date format syntax help added&lt;br /&gt;
* Wizard: Corrected date format validation bug that reported dates of the form '01/01/2010' as valid&lt;br /&gt;
* Wizard: Corrected bug that incorrectly evaluated date values in existing formulas on wizard startup&lt;br /&gt;
Beta 0.7.11&lt;br /&gt;
* Legacy Mode: Changed legacy mode to use 'worksheet' scoped named ranges rather the 'workbook' to avoid confusion when worksheets are duplicated&lt;br /&gt;
* Legacy Mode: Modified legacy refresh to use worksheet.evaluate rather than application.evaluation to ensure formulas run within the correct worksheet context - fixes unexpected workbook refresh results due to the formulas on other worksheets being evaluated in the current worksheet context&lt;br /&gt;
Beta 0.7.11&lt;br /&gt;
* FXLData: Bug fix to availability query to correctly set the format=sdmx-2.1 - resolves problem in Fusion Registry 11.0.0 where the query was being rejected with HTTP 406 due to invalid format specifier&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Change_Log_FR_-_V11_and_subsequent_releases&amp;diff=8230</id>
		<title>Change Log FR - V11 and subsequent releases</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Change_Log_FR_-_V11_and_subsequent_releases&amp;diff=8230"/>
		<updated>2026-03-12T15:29:56Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Fusion Registry Change Logs]]&lt;br /&gt;
[[Category:ChangeLogFR]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.04_RFS_13.03.26 Released March 13, 2026 - Hotfix ==&lt;br /&gt;
RFS-2518 - Bug Fix - If the git information was not present or the url was not readable the application was logging repeatedly an error when reading the product information.&lt;br /&gt;
Support Reference - SUP-303838&lt;br /&gt;
 &lt;br /&gt;
= H1.3.0.02_RFS_10.10.25 - Released on December 12, 2025 =&lt;br /&gt;
RFS-1901 - Improvement - Performance improvements when computing complex aggregates for big data sets&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.01_RFS_10.10.25 - Released on October 9, 2025 =&lt;br /&gt;
RFS-1722 - Enhancement - Performance improvements to generation of temporary (MVS) files.&lt;br /&gt;
&lt;br /&gt;
= R1.3.0.00_RFS_29.08.25 - Released on August 29, 2025 =&lt;br /&gt;
RFS-1516 - Enhancement - Publication Table Editor allows the user to add only 150 rows in order to ensure performance. The limit has been increased to 350&lt;br /&gt;
&lt;br /&gt;
RFS-1523 - Bug Fix - Publication Tables - content within a loop did not iterate through the full range of defined dimensions. This issue has been fixed.&lt;br /&gt;
&lt;br /&gt;
RFS-1461 - Bug Fix - Where an Oracle database was in use, it was possible to have duplicate email subscriptions stored causing multiple email notifications. This has been resolved by converting all email addresses to lower case with duplicates not allowed.&lt;br /&gt;
&lt;br /&gt;
RFS-1443 - Bug Fix - In Publication Tables, added footnotes sometimes appeared in the middle of the table when exporting the table in Excel format. A bug was fixed that was causing footnotes to be written to the middle of the table in Publication Tables when exported in Excel format.&lt;br /&gt;
&lt;br /&gt;
RFS-1439 - Bug Fix - Remove Footnote Note button in Publication tables was not operational.&lt;br /&gt;
&lt;br /&gt;
RFS-1380 - Bug Fix - Temporary .mvs file were not always being deleted resulting in unnecessary disk usage. Changes have been made to improve the handling of .mvs and other temporary files to ensure they are deleted as appropriate.&lt;br /&gt;
&lt;br /&gt;
RFS-1378 - Bug Fix - Issue with operations on the Input Stream throwing an NPE. This issue has been resolved.&lt;br /&gt;
&lt;br /&gt;
RFS-1326 - Bug Fix - It was observed that there was inconsistent structure rendering taking place on some API responses from Fusion Registry after the cache had been cleared from the registry.  A targeted fix for this issue at the point of cache clearing was applied.&lt;br /&gt;
&lt;br /&gt;
RFS-1284 - Bug Fix - Delete Language button not working in Codelists. Issue resolved.&lt;br /&gt;
&lt;br /&gt;
RFS-1278 - Bug Fix - Email notifications feature sends emails with 'null' in the subject and email content. The system now uses the name 'Fusion Registry' when this is not set. &lt;br /&gt;
&lt;br /&gt;
RFS-1258 - Bug Fix - Fresh install of the Registry, install page is headed with &amp;quot;Fusion Registry 11 - Install&amp;quot; making this out of date with the current product name and version. The heading on the install pages on a fresh install of the Registry now reads &amp;quot;Fusion Registry&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
RFS-1256 Fusion Registry V10.9.11 - Bug Fix -  Two email notifications for structure submission and structure deletion events were issued and emails in different casings were also creating two subscriptions with the same email in different casings. The system has been modified so only one notification is sent per structure submission or structure deletion event.&lt;br /&gt;
&lt;br /&gt;
RFS-1189 - Bug Fix - Data Formats - Inconsistent behaviour in formats that do not support multiple measures. Standard messaging implemented.&lt;br /&gt;
&lt;br /&gt;
RFS-1182 - Bug Fix - If a large number of Provision Agreements existed, the Home Page was slow to load. Changes were made to the way the Home Page loads which has significantly improved performance.&lt;br /&gt;
&lt;br /&gt;
= H1.2.0.03_RFS_12.03.25 (Released March 12, 2025) =&lt;br /&gt;
RFS-1443 - Enhancement - Issue with the placement of footnotes within Publication Tables. Support Ticket 415617.&lt;br /&gt;
&lt;br /&gt;
RFS-1054 - Enhancement - Change requested to the Fusion CSV Flat data format. A new CSV data format was added. It can be referenced by adding format=csv-bis as a query parameter to the data query URL. The new format orders data by time period (i.e. 2020, 2020M1, 2020Q2, 2021, 2021Q2, 2021M2) and also permanently adds the series short code as a column (e.g. CHN:BT:EX).&lt;br /&gt;
&lt;br /&gt;
= H1.2.0.01_RFS_20.02.25 (Released February 20, 2025) =&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
RFS-1378 - Bug Fix - Previously, an error could occur which caused an NPE. This has been addressed. Support Ticket - 411382.&lt;br /&gt;
&lt;br /&gt;
RFS-1326 - Bug Fix - Previously, it was observed that there was inconsistent structure rendering taking place on some API responses from Fusion Registry after the cache had been cleared.  A targeted fix for this issue at the point of cache clearing was applied.&lt;br /&gt;
&lt;br /&gt;
RFS-1182 - Bug Fix -  Previously, if a large number of Provision Agreements existed, the Home Page was slow to load. This has been addressed. Support Ticket - 355829 &amp;amp; 404512.&lt;br /&gt;
&lt;br /&gt;
= R1.1.2.00_RFS_31.01.25 (Released January 31, 2025) =&lt;br /&gt;
== Changes ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Jira Ticket !! Type !! Description !! Solution&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1044 || Enhancement|| Previously, Fusion Data Store would throw an exception when attempting to append new measures to existing observations, which was inconsistent with SQL data sources that support such appends. || Added the ability to append new measures to existing observations within the Fusion Data Store.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1211 || Enhancement || Update the default data formats from 2.1 to 3.0. || The default data format has been updated from *SDMX-Compact-2.1* to {*}SDMX-Compact-3.0{*}, which introduces support for multi-measures. The previous format is still available and can be accessed via the web service dropdown or by specifying the {{&amp;quot;format&amp;quot;}} parameter in the URL. The Quick Convert feature is still using SDMX-Compact-2.1 format, and will be changed according to the changes in open-source in the future.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1233 || Bug Fix || Display issues found on Chrome || Change required following Chromium update release in November 2024. [https://wiki.sdmxcloud.org/Data_Structure_issue_November_2024 more information here.]&lt;br /&gt;
|-&lt;br /&gt;
| RFS-682 || Change|| Issue with Validation schemes and OBS_VALUE data type setting. || Numeric values formatting changed to plain string, as validation was not correctly interpreting scientific notation.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-705 || Change || Out of date branding in the Info area.|| Regnology branding now displayed in the Info area.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-706 || Change || Out of date branding on the Home Page footer line. || Regnology branding now displayed in the footer.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-79 || New Feature|| Web Services Data || New fields in Web Services Data page to allow the user to specify the period. [https://wiki.sdmxcloud.org/Web_Services_-_GUI_-_Data More information here]&lt;br /&gt;
|-&lt;br /&gt;
| RFS-844 ||Enhancement|| Introduction of Multiple Measures || [https://wiki.sdmxcloud.org/Support_for_Multiple_Measures Support for data, Phase A]&lt;br /&gt;
|-&lt;br /&gt;
| RFS907 || Enhancement|| New Feature|| Loading Structures. This option is now available on every page.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.2.0.00 RFS 30.01.25.pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
== R1.1.0.00_RFS_05.07.24 (Released 15.07.2024) ==&lt;br /&gt;
&lt;br /&gt;
This release was delivered by Regnology and the Version numbering has changed along with the ticket numbering system (RFS) used to display changes below. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.1.0.00 RFS 05.07.24 1 .pdf]]&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
RFS-493 - Tableau Connector. [[Tableau_Connector | New connector released.]] This has resulted in behavioural changes for the Observational Value [[Tableau_Connector#Observation_Value | - more information available here.]]&lt;br /&gt;
&lt;br /&gt;
== Bug Fixes: ==&lt;br /&gt;
&lt;br /&gt;
RFS-580 - Web Services Query ] Problem  with &amp;quot;completecube&amp;quot; parameter when using the Data Query  Web Service when multiple values are provided. &amp;lt;br&amp;gt;&lt;br /&gt;
RFS-514 - Problem with Publication tables when series queries with wild cards  present.&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-436 - Web Services -Data - System unable to process large volumes of data when Excel Export selected resulting in a need to re-boot. This has been resolved by implemented the Series and Observation limit in the Admin -Server  Settings -  XLSX format. &amp;lt;br&amp;gt;&lt;br /&gt;
RFS-433 - Registry Managed Database - Temporary Table unavailable causing data load failure.&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-287 - Download Structures -  Warning message when trying to download non SDMX  structures in SDMX format missing. Message implemented - JSON format should be used.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.13.0 (Released: 2024/02/08)==&lt;br /&gt;
Based on FMR 11.14.1&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-22: Creating &amp;quot;flat CSV&amp;quot; no longer includes unecessary Sibling Group entries at the start of the file&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-181: Support for SDMX-ML v3.0 Data&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-39: Update vulnerable third-party dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-163: Data Web Service contains duplicate entry for &amp;quot;Excel&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-164: Data Web Service contains unstyled text label&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-76:  &amp;quot;lastUpdated&amp;quot; parameter not working correctly on Data Query for external databases&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.3 (Released: 2023/11/24)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-217: Concurrent modification exception in cache&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.2 (Released: 2023/11/22)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-216: REST query which results in no data now returns a 404 with an SDMX error message, was previously an empty dataset&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-215: Publication Tables: 'includePeriod' REST query parameter returns no data when multiple Dataflows are used and 1 has no data&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.1 (Released: 2023/11/21)==&lt;br /&gt;
Based on  FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-211: Improvements to the &amp;quot;Test Mapping&amp;quot; feature&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-214: Registry can consume all connections to an External Data Store&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.0 (Released: 2023/11/20)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-210: Publication Table: Calculation expression to support default value when no Observation found&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-213: Publication Tables: Calculation expression to support default value if no reported value found&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-212: Publication Table: Formatting issue using partial keys - returns 400 exception&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.11.0 (Released: 2023/11/03)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-206: Create aggregate series using linked Hierarchy&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-207: Data Query detail parameter; added 'raw' as a new value to support export of data with no calcualted values via hierarchical aggregations&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-208: In a Generated Reporting Template permit format modification on Observation Cells&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-209: Publication Table: Issue applying formatting rules across multiple Dataflows&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.10.1 (Released: 2023/09/15)==&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-205: saveas=[filename].zip from v1 SDMX web service results in a corrupt zip&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.10.0 (Released: 2023/09/11)==&lt;br /&gt;
Based on  FMR 11.10.1&lt;br /&gt;
&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-195: Publication Tables: Allow dependant variables to be overridden from the API&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-197: Default response formats in v2 web service are now configurable&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-203: Kafa: new topic to publish structure transaction events to&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-204: Kafa: new topic to publish reference metadata events to&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-202: Structure Format response is no longer auto detected if not explicitly set (takes value from default setting)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-198: Querying for data by observation attributes&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-199: saveas=zip is not working on v2 API&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-200: Publication table: Formatting cells ignores UNIT_MULT when it is reported as a dataset level attribute&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-201: Publication table: Conditional Formatting being applied when condition references a Component which is not present in DSD&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.6 (Released: 2023/08/25)==&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-163: Validator: &amp;quot;Missing Attributes&amp;quot; renamed to &amp;quot;Missing Components&amp;quot; and reports on missing Measures&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-164: Add &amp;quot;Output Required&amp;quot; UI control to Structure Mapping&amp;lt;br&amp;gt;&lt;br /&gt;
FR110188: Adding a observation formatting rule treats comma separeted component ids as an AND operator (was OR)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-146: Update Apache POI to version 5&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-147: Update Commons-fileupload third-party dependency&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-148: Update Spring dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-149: Update Jettison third-party dependency&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-150: Web Service to refresh caches&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-158: Merging a Codelist should merge Locale information&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-160: Update Spring and Jackson Dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-161: Implment caching on publication tables&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-167: Improve Mapping functionality so that it can perform Validation&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-171: Portal File system sweep - allow files to be placed in root of sweep directory&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-173: Update Kryo to version 5.5.0&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-174: Publication Tables - not formatting numbers with scientific notation&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-175: Components with Time based Mappings cannot be edited in the Structure Map Wizard&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-176: Support Custom Plugins&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-190: Add SDMX-JSON v2 to the UI&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-191: Restore Fusion Security as an authentication mechanism&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-192: FMR#481: Duplicated group IDs for schema queries in SDMX-JSON&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-193: Mapped Datasets Configuration - new option &amp;quot;Output Required&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-151: Item Validity not returning most recent entry prior to today's date&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-152: Subscript out of range error with FusionXL when carriage return is in the name of a structure&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-153: No transactions returned on SDMX Transactions page when using date slider&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-155: Publicaiton Table Editor: Dependent Variables, remove variable button does not work&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-156: Publication Table availabililty algorithm modified to better calculate default values when using multiple dataflows&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-157: FusionXL resolve carriage returns in concept names&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-159: Cross references not updated correctly when structure already exists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-162: Update Vulnerable Dependencies for FMR 11.7.0&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-165: Validating Generic Data can result in IllegalElement error&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-166: FMR#418 - Conversion and mapping services fail to read SDMX CSV 2.0 format files with BOM&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-168: CSV-TS data format outputting names as labels does not output labels in last Dimension/Attribute column&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-169: RegEx Capture Groups for Representation Map only support 0-9 (\10 and above does not work)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.5 (Released: 2023/03/08)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-140: Modification of interpration of SDMX-CSV V2 row https://github.com/bis-med-it/fmr/issues/349&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-145: Fusion Excel Export Data API now takes an additional 'attachment' parameter&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-137: Removal of dependencies: gson, protobuf, closure, args4j&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-138: Unable to load Structure File when Mapping refers to DSD with ValueList coded dimension https://github.com/bis-med-it/fmr/issues/359&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-141: Caching in reference metadata requests https://github.com/bis-med-it/fmr/issues/356&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-142: Parsing EDI fails to detect malformed period https://github.com/bis-med-it/fmr/issues/362&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-143: EDI REL segment must be followed by ARR segment https://github.com/bis-med-it/fmr/issues/322&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-144: Publication Table - Calculations which contain missing values should not output a value&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.4 (Released: 2023/02/17)==&lt;br /&gt;
'''Bug Fixes'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-135: Publication Table - calculated values could come back as enginnering string when standard form is requested&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-136: Regression mapped data store was not mapping rows with null attribute values&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.3 (Released: 2023/02/16)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-129: Temporary &amp;quot;MV&amp;quot; files not being cleared up after data transformation https://github.com/bis-med-it/fmr/issues/346 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-131: Improve Performance of large Codelists which have Item Validity https://github.com/bis-med-it/fmr/issues/353 &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-133: Improve linking to external datasource by auto detecting foreign key &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.2 (Released: 2023/02/13)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-132: Supported 'latest' in v2 query to prevent errors in connected tools&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.1 (Released: 2023/02/10)==&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-128: Security rule on OBS Attribute blocks observation when value is null&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.0 (Released: 2023/02/03)==&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-117: Provide option to skip Validation phase in Transform Web Service https://github.com/bis-med-it/fmr/issues/237&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-120: Publication Table - apply number formatting to calculated cells&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-121: Publication Table - Apply number scaling before calculations&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-118: Use the public fastUtil library https://github.com/bis-med-it/fmr/issues/338&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-116: Timezone issue with REST API resulting in no data&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-119: Codelists with Annotations not being correctly parsed in SDMX-JSON  https://github.com/bis-med-it/fmr/issues/345&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-123: EDI should prevent Quadruplet attributes in Footnote Section https://github.com/bis-med-it/fmr/issues/347&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-124: EDI file missing mandatory Period Information validates successfully  https://github.com/bis-med-it/fmr/issues/348&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-125: Improve validation of EDI DTM segment https://github.com/bis-med-it/fmr/issues/351&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-126: Publication Table - decimal places (fixed) truncated trailing zero places when locale was also set&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-127: Duplicate elements in SDMX CSV result in unexpected output    https://github.com/bis-med-it/fmr/issues/342 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.2 (Released: 2023/01/17)==&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-108: Prevent contradictory excel mappings (generted from Fame Metadata Manager) worksheets being uploaded to Registry&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-109: Flag contradictory excel mappings (generted from Fame Metadata Manager) in generated worksheet  &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-134: Improve Metrics Report with IncUnmappedReport option &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-111: Change ID Generation of Representation Map from FusionFameMapper xlsx files.&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-115: Ensure Implicit Mappings in Structure Maps validate codelists for valid intersection &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-107: Parent codes should be included in reference partial&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-110: Complete Cube web service feature outputs empty measure values (not 0 values)&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-112: Data export formats excel-ts and excel-series can miss observations in output series if series contains observations with no measure values and no attribute values&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-113: Fix 'too much recursion' error with reverse engineer data structure with large number of Dimensions&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-114: Validate submission of Structure Map's Implicit mappings to ensure Coded mappings have a valid intersection from source to target &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.1 (Released: 2023/01/11)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-101: Unable to import Codelists with multiple levels of inheritence in same submission as structures that use inherited codes&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-102: Bulk actions - detail=raw is ignored&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-103: REST query: detail=raw is not applied to referenced codelists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-104: IncValid output may contain empty series when it should not be generated&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-105: Annotations are ignored when importing 2.1 XML Hierarchical Codelists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-106: format=csv-series null pointer&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.0 (Released: 2022/12/21)==&lt;br /&gt;
'''Important Note for MySQL users:''' due to changes in the distribution of the MySQL connector (change FR11-94 below), please read [[Install_MySQL#Installing_MySQL_5.7|this article]].&lt;br /&gt;
&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-98: Publication Table - support a scaling function applied to numerical observations&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-93: Improve Performance of Viewing a Hierarchy https://wiki.sdmxcloud.org/Publication_Table#Formatting_Numerical_Observation_Values&lt;br /&gt;
&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-91: Validation and Transformation should preserve original format unless output format specified &amp;lt;br&amp;gt;&lt;br /&gt;
https://wiki.sdmxcloud.org/Data_Validation_Web_Service#HTTP_Headers  see Accept Header&amp;lt;br&amp;gt;&lt;br /&gt;
https://wiki.sdmxcloud.org/Data_Transformation_Web_Service#HTTP_Headers  see Accept Header&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-94: Remove MySQL Connector https://wiki.sdmxcloud.org/Install_MySQL#Installing_MySQL_5.7&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-89: Support dataset attribute consolidation (detection of duplicates)&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-90: Observation deletions are no longer written in EDI format&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-92: NPE when publishing EDI data from Command Line&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-95: Publication Table - UI changes table definition (looses column) when clicking preview table &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-96: Publication Table - Preview table error when table heading Rowspan &amp;gt; 1&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-97: Publication Table - bug fix on formatting obs which removed values from output table&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-99: Publication Table - Scientific Notation shows NaN in UI and is not applied to observation values&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-100: Refreshable workbook - issue security challenge when connecting to private server&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-207: Transforming Data with &amp;quot;Delete&amp;quot; action can leave erroneous output in EDI format&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-217: Publication Tables: Numerical Observation, &amp;quot;Add Rule&amp;quot; button does not work&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-224: Failure to report unmapped data when using TIME_PERIOD mapping&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.2 (Released: 2022/11/22)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-84 - In SDMX CSV, SERIES_KEY and OBS_KEY will output with the quote marks around the whole key&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-80 - Validation on Group ID should ignore case&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-82 - Size of column in Portal Table not large enough to contain Data Source ID&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-85 - When loading via Registry UI, Data file with Duplicate Series results in MV Store Error&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-86 - Viewing a Representation Map has issue with &amp;quot;valid from&amp;quot; on Mappings&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.1 (Released: 2022/11/15)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-83 - Support Categorise Publication Table via the UI&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.0 (Released: 2022/11/11)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-78 - Publication Table Support Numerical Observation formatting&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-79 - Fix an issue when &amp;quot;edi.datagroup.identifier&amp;quot; specified with value of asterisk&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-80 - Validation on Group ID should ignore case&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-81 - Data Portal - ESTAT Connector fix&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.6.0 (Released: 2022/11/31)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-76 - [[Audit_Web_Services#Search_Structure_Queries|Audit Structure Queries]]&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-77 - [[Audit_Web_Services#Search_Data_Queries|Audit Data Queries]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-75 - Support for extended UTF-8 characters https://github.com/MEDIT-Org/fmr/issues/297 &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-65 - Update FontAwesome to use Version 6&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-71 - Corrected issue with Dynamic Attributes&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-72 - Version Drop-Down not Displayed when Selected Item on Page Load&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-74 - Security Group Web Service does not output UTF-8 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-65 - Update Web Services &amp;quot;structure&amp;quot; page so the plus symbol is used for &amp;quot;latest&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.2 (Released: 2022/10/14)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-194 - Publication Table - support casting dates more then once in same expression&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-202 - Update dependencies: Hibernate, Spring-Kafka, Jettison and Jersey https://github.com/MEDIT-Org/fmr/issues/294&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-66 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Web Service -&amp;gt; Structures page&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-67 - &amp;quot;Metadata Provider Wizard&amp;quot; does not allow Providers to start with a numeric yet the SDMX Standard allows this&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-68 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Cross References page&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-69 - Attaching Reference Metadata to Items in an item scheme fails to add link (cache issue)&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-189 - Behaviour of web service resolving multiple Codelist inheritance with &amp;quot;details=raw&amp;quot; https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-196 - Unable to read Excel Spreadsheet where all Frequencies are Formulas&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-197 - Request for Codelist in SDMX-JSON, &amp;quot;details=raw&amp;quot;, references=&amp;quot;children&amp;quot; doesn't return children as raw https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-198 - Request for Codelist in SDMX-JSON, &amp;quot;details=raw&amp;quot;, references=&amp;quot;descendants&amp;quot; doesn't return descendants https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-199 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Web Service -&amp;gt; Structures page &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-200 - &amp;quot;Metadata Provider Wizard&amp;quot; does not allow Providers to start with a numeric yet the SDMX Standard allows this&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-201 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Cross References page &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-203 - Attaching Reference Metadata to Items in an item scheme fails to add link (cache issue) &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-205 - Version Number not Displayed when Selected Item on Page Load&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.1.1 (Released: 2022/10/10)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-73 - Modify SQL to ensure GMT Timezone is used&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.1 (Released: 2022/10/05)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-60 - Publication Table - support casting dates more then once in same expression&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-61 - orderMeasure web service parameter to sort observations by date asc/desc&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.0 (Released: 2022/09/28)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-187/FR11-53 - Support recovery of structure transactions from backup on installation [[Backup_and_Restore|FMRCL]] https://github.com/MEDIT-Org/fmr/issues/277  &amp;lt;br&amp;gt; &lt;br /&gt;
FR11-52 - Support variable number of max arguments to a SQL IN statement&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-58 - Support import of datafile containing mulitple datasets&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-183 - Update dependencies https://github.com/MEDIT-Org/fmr/issues/277&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-48 - Update third-party dependencies: apache-jstl, commons-dcp2, joda-time, spring, tika-core&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-45 - Add Version Number to Provision Agreement Selector in Data Source Manager Modal&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-181/FR11-46 - SDMX CSV v 2.0 Data Format does not report its format https://github.com/MEDIT-Org/fmr/issues/110&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-184/FR11-49 - Support '*' for structure type in REST API https://github.com/MEDIT-Org/fmr/issues/273&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-185/FR11-51 - Failure on Compare Revision shows Stack Trace https://github.com/MEDIT-Org/fmr/issues/278&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-186/FR11-55 - SDMX-JSON Writer not outputting DSD as stub https://github.com/MEDIT-Org/fmr/issues/274&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-50 - FameMapper code is creating Excel files in temporary storage which are not deleted&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-54 - EDI data not fully consolidated when publishing data via web service&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.3 (Released: 2022/09/13)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-174 - Publication Tables: Formatting of Missing Values support ObsValue=NaN https://github.com/MEDIT-Org/fmr/issues/253&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-175 - Support Reading of Reference Metadata  (with restrictions) in version 2.1 SDMX   https://github.com/MEDIT-Org/fmr/issues/250&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-182 - Modify ID generation strategy for importing Reference Metadata at v2.1&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-39 - OBS_PRE_BREAK validation corrected&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-43 - SDMX DSD output may include invalid attribute &amp;quot;isMultiLingual&amp;quot;&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-44 - SQL Server does not delete temporary tables&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-169 - SDMX CSV v1 Data Reader does not allow header fields (row 1) to be double quoted &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-170 - Bulk Export - spelling mistake on Raw help text&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-171 - Order of revisions not as expected&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-176 - OBS_PRE_BREAK validation corrected&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-178 - Quadruplet in EDI vs the other formats in the context of data consolidation or integration https://github.com/MEDIT-Org/fmr/issues/118&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-179 - SDMX DSD output may include invalid attribute &amp;quot;isMultiLingual&amp;quot; https://github.com/MEDIT-Org/fmr/issues/255&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.2 (Released: 2022/08/19)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-30 - Fusion Security Manager will not accept AD group names longer than 30 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-34 - Updated third-party dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.1 (Released: 2022/08/10)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-21 - Issue loading data into SQL Server in Registry managed table &lt;br /&gt;
FR11-26 - Bulk Export - spelling mistake on Raw help text&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-27 - Order of revisions not as expected&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-28 - JNDI Registry Managed Database - unable to load data&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-25 - SDMX CSV v1 Data Reader does not allow header fields (row 1) to be double quoted&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.0 (Released: 2022/07/22)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-18 - Support Reference Metadata https://wiki.sdmxcloud.org/Reference_Metadata&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-146 - Dependency updates&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-159 - Add &amp;quot;Raw&amp;quot; option to Download structures and remove &amp;quot;Include internal settings&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-160 - Allow a Concept Representation to be a ValueList&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-14 - Issue loading Data Constraint with a Component element under Cube Region element&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-17 - Attribute variable does not work in table heading&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-19 - Increase max size of security group ID from 30 to 100 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-162 - SERIES_KEY column should be reserved for series keys&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-161 - Issue loading Data Constraint with a Component element under Cube Region element&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-163 - Attribute variable does not work in table heading&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-166 - Duplicate attribute is not detected anymore in FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-167 - Publication Table - Array Variables fail to save&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-168 - Error encountered whist attempting to deserialize structure&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.3.0 (Released: 2022/07/06)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-10/FMR11-153 - [[Synchronise_structural_metadata_between_environments|Environment Synchronisation - compare the structural metadata content with that from another Registry, push or pull changes]]&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-158 - [[Publication_Table#Footnotes|Publication Table: Footnotes support]]&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-152 - Comma not being processed correctly in Web Service query for ItemBeans&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-154 - Unexpected structure validation error from FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-155 - Structure validation errors are not detected anymore in FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-156 - v2 structure REST API does not support queries for multiple items using the comma syntax&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-157 - Typo in header of Representation Maps page&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.2.0 (Released: 2022/06/27)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-150] Specify the validation and transformation behaviour when duplicate observations are found - [[Data_Transformation_Web_Service#HTTP_Headers|https://wiki.sdmxcloud.org/Data_Transformation_Web_Service#HTTP_Headers]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-3] Schema Query in structure format does not work&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-4] Fusion Cache ignoring parameters like normalise freq on V1 data queries&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-5] Data Point Security - allow rule against a series attribute value that does not exist in the dataset restricts all data&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-8] Comma not being processed correctly in Web Service query for ItemBeans&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-141] Re-opening of Alternate Half year Issue&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-143] TIME_FORMAT not being generated correctly&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-144] Problem with Date data type when reverse engineering a DSD from a CSV dataset&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-145] Problem with Description data type when reverse engineering a DSD from a CSV dataset&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-147] DSD Wizard step 3 - not allowing Enumerated Representation &amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-148] Schema Query in Structure Format does not work&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:&amp;lt;br&amp;gt;'''&lt;br /&gt;
[FMR11-140] Revert xsi:type=SiblingType, change the schema to output the Group as Sibling not SiblingType -&lt;br /&gt;
&lt;br /&gt;
==Version 11.1.0 (Released: 2022/06/01)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[[Publication_Table|Publication Tables]]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5130] [https://wiki.sdmxcloud.org/Publication_Table#Looping_Rows Publication Table - Support Dynamic Rows]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5131] [https://wiki.sdmxcloud.org/Publication_Table#Formatting_Missing_Observations Publication Table - Format rules on cells with no data ]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5132] [https://wiki.sdmxcloud.org/Publication_Table#Dependent_Dimension_Variable Publication Table - Rules to derive a Dimension Value from another Dimenison's value]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5133] [https://wiki.sdmxcloud.org/Publication_Table#Anchor_Rows Publication Table - Option to output rows with no data ] &amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5134] [https://wiki.sdmxcloud.org/Publication_Table_Web_Services#Materialise_Publication_Table Publication Table - Ouput Materialised Table in Excel ]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5129] - Support for MySQL 8 and above&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.0.0 (Released: 2022/05/22)==&lt;br /&gt;
'''Changes and New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Change to the SDMX 3.0 information model as Fusion Registry’s internal metadata object model&lt;br /&gt;
* SDMX 3.0 REST API support&lt;br /&gt;
* Backward compatibility for SDMX 2.1 and 2.0 structures and formats&lt;br /&gt;
* Backward compatibility with SDMX 2.1 REST API (REST API v1 specification)&lt;br /&gt;
* Improved data and metadata access control&lt;br /&gt;
* Granular control over admin rights&lt;br /&gt;
* Fusion Portal – scheduled and on demand data and structure loads&lt;br /&gt;
* Refreshable Excel data format&lt;br /&gt;
* JNDI database connection option&lt;br /&gt;
* Publication Tables - publish curated but dynamic user interactive web data tables that show precisely the statistics required even if they come from multiple different data sets&lt;br /&gt;
&lt;br /&gt;
'''Breaking Changes from Fusion Registry 10:'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Change to the operating database schema - upgrading from Fusion Registry 10 to Fusion Registry 11 requires a fresh install and migration of the metadata, data and settings. A change has been made to the operating database schema. The upgrade process must be followed carefully when [https://wiki.sdmxcloud.org/Upgrading_from_FR_V10_to_FR_V11 upgrading to Version 11.]&lt;br /&gt;
* Environment sync function temporarily removed.&lt;br /&gt;
* The Metadata Reports function has been temporarily removed.&lt;br /&gt;
* Fusion Security support deprecated - Active Directory and LDAP are the supported authentication services in Fusion Registry 11.&lt;br /&gt;
* Content Security is no longer supported in Version 11, the functionality has been replaced by [https://wiki.sdmxcloud.org/Main_Page#Fusion_Security_Manager_Topics| Fusion Security Manager]&lt;br /&gt;
* Structure Sets are replaced by Structure and Representation Maps.&lt;br /&gt;
* Hierarchical Codelists are replaced by Hierarchies.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8229</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8229"/>
		<updated>2026-03-12T15:24:59Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Please refer to the Change Log(s) and Release Notes for more detail.&lt;br /&gt;
== H1.3.0.04_RFS_13.03.26 Released March 13, 2026 - Hotfix==&lt;br /&gt;
&lt;br /&gt;
* Enhancement to the aggregation functionality in FXL Data.&lt;br /&gt;
* Fix to prevent spurious errors in the Registry log file.&lt;br /&gt;
&lt;br /&gt;
==P1.3.1.00_RFS_29.05.26 Estimated release date May 25, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 Estimated release date June 6, 2026 - Full Release ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
==P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8228</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8228"/>
		<updated>2026-03-12T15:23:36Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
== H1.3.0.04_RFS_13.03.26 Released March 13, 2026 - Hotfix==&lt;br /&gt;
&lt;br /&gt;
* Enhancement to the aggregation functionality in FXL Data.&lt;br /&gt;
* Fix to prevent spurious errors in the Registry log file.&lt;br /&gt;
&lt;br /&gt;
==P1.3.1.00_RFS_29.05.26 Estimated release date May 25, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 Estimated release date June 6, 2026 - Full Release ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
==P2.0.1.00_RFS_31.07.26 Estimated Release Date July 31, 2026 - Patch ==&lt;br /&gt;
Contents to be confirmed.&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8227</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8227"/>
		<updated>2026-03-12T15:15:31Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Release Plans */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:&amp;lt;span style=&amp;quot;opacity:0;position:absolute;&amp;quot;&amp;gt;{{FULLPAGENAME}}&amp;lt;/span&amp;gt;}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:2.0rem;&amp;quot;&amp;gt;Regnology Fusion Statistics Knowledge Base&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
==SDMX Statistical Data Warehouse==&lt;br /&gt;
&lt;br /&gt;
Regnology Fusion Statistics is for central banks, international organisations, national statistics offices, development banks and regional statistics authorities who need an enterprise SDMX statistical data warehouse for storage of aggregated time series, data cataloguing and public dissemination. '''Reade more''' about SDMX here: [https://www.regnology.net/en/resources/regulatory-topics/sdmx/ What is SDMX?].&lt;br /&gt;
&lt;br /&gt;
Click here to see a visual representation of the [[Fusion_Registry_Core_Software_Stack|Fusion Registry Core Software Stack.]] Click here to read more about [[Fusion_Registry_Overview| Key Use Cases.]]&lt;br /&gt;
&lt;br /&gt;
== Release Plans ==&lt;br /&gt;
&lt;br /&gt;
[[Release_Plans| Click here to view our future plans for Regnology Fusion Statistics.]]&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==What's new?==&lt;br /&gt;
[[What%27s_new|  Click here to access more information on changes implemented in Releases and Hot Fixes from January 2025 onwards.]]&lt;br /&gt;
&lt;br /&gt;
== How to download a new version==&lt;br /&gt;
[[File:How to obtain a Release-aug-2025.pdf | Click here to download instructions on how to uses the delivery software.]]'''&lt;br /&gt;
&lt;br /&gt;
==Open Source Software (OSS) / Third Party Components==&lt;br /&gt;
[[Open_Source_Software_(OSS)_/_Third_Party_Components|Click here for more details.]]&lt;br /&gt;
&lt;br /&gt;
==Components and Modules==&lt;br /&gt;
Regnology Fusion Statistics consists of a number of modules centered on the Fusion Registry core data warehouse engine, including a secure high-performance data dissemination server and a configurable data explorer and analytics tool for data consumers and analysts. &lt;br /&gt;
&lt;br /&gt;
Fusion Registry has an integrated SDMX structural metadata registry that is 100% compatible with Fusion Metadata Registry.&lt;br /&gt;
&lt;br /&gt;
[[File:Modules-Oct23.png|900px]]&lt;br /&gt;
&lt;br /&gt;
==Fusion Registry Topics==&lt;br /&gt;
SDMX statistical data engine and structural metadata registry. The main statistical engine for data collection, integration, processing, storage, query execution and time-series calculations. It provides an SDMX-compliant data and metadata REST API. The integrated SDMX structural metadata registry acts as the central repository, authoring and maintenance tool for all of the structures including Codelists, Concepts and Data Structure Definitions.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Fusion_Registry_Overview|'''Overview''']]|| What is Fusion Registry?&lt;br /&gt;
|-&lt;br /&gt;
| | [[Fusion_Registry_-_Install,_Update_and_Configure |''' Fusion Registry Install, Update and Configure ''']]|| How to install, update  and configure the Registry   &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SDMX Structures|'''SDMX Structures''']]|| Detailed explanations of the main SDMX structural metadata artefacts &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Structural Metadata|'''Structure Maintenance''']]|| How to maintain the SDMX Structures&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Reference_Metadata|'''Reference Metadata''']] || Guidance on working with SDMX 3.0 reference metadata in Fusion Registry 11&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How To|'''How to and other Features''']] || Guidance on specific tasks using Fusion Registry&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SdmxDataFormat|'''Data Formats''']] || A description of supported Data Formats&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RegistrySecurity|'''Security''']] || Authentication and Authorisation Features&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:WebService|'''Web Services''']] || Registry Web Services&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFR|'''Change Logs''']] || Change Logs for Registry 11 and Registry 10&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RetiredFunctionality|'''Retired Functionality''']] || Functionality no longer valid in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Portal Topics==&lt;br /&gt;
Fusion Portal is a web application made up of HTML, JavaScript, Images, and CSS files. The Portal allows you to call data from SDMX Webservices and other sources which enables you to obtain data from the data provider and import it directly into Fusion Registry.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion_Portal_Install |'''Installation and Configuration''']]|| How to install and Configure the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Data Portal Functions |'''How to and other Features''']] || Guidance on using Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:CRON-DP |'''Cron''' ]] || Using Cron to schedule regular synchronisations&lt;br /&gt;
|-&lt;br /&gt;
| [[Portal_Web_Services|'''Web Services''']] || List of Web Services specific to the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Portal|'''Change Logs''']] || Change Logs for Fusion Portal&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Security Manager Topics==&lt;br /&gt;
Available in Fusion Registry 11, a user interface which allows authorisation and rules to be created which explicitly permit or deny a security group access to a resource. The default behaviour of is to make everything private. In order to make structures and data public, specific security rules must be defined to grant access.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FSM_Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Security_Manager_(FR_V11) |'''How to and other Features''']] || Guidance on using Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Security_Manager|'''Change Logs''']] || Change Logs for Fusion Security Manager.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Fame Mapper Topics ==&lt;br /&gt;
Web tool for creating and maintaining Fusion Registry FAME to SDMX series mappings.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FFM Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Fame_Mapper |'''How to and other Features''']] || Guidance on using Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Fame_Mapper|'''Change Logs''']] || Change Logs for Fame Mapper&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Data Browser Topics==&lt;br /&gt;
Web tool for data consumers to explore the Fusion Registry data catalogue, create charts and tables, and download data.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Data_Browser |'''Overview ''']]|| What is Fusion Data Browser?&lt;br /&gt;
|-&lt;br /&gt;
| [[A_beginners_guide_to_Fusion_Data_Browser |'''Getting Started''']]|| Non-technical guide for using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Anatomy_of_the_Data_Browser |'''Anatomy of the Data Browser''']]|| Technical guide detailing techniques and solutions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FDB Install and Configure |'''Installation and Configuration''']]|| How to install and Configure the Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Data Browser |'''How to and Functions''']] || Using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Data_Browser|'''Change Logs''']] || Change Logs for Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Registry Data Browser|'''Retired Functionality''']] || Functionality no longer available in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FusionXL Topics==&lt;br /&gt;
FusionXL is an addin for Microsoft Excel which connects to a Fusion Registry server for both data and structure retrieval, and maintenance.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Install|'''Installation''']] || How to Install Fusion XL and connect to a Fusion Registry server&lt;br /&gt;
|-&lt;br /&gt;
| [[Security in FXL |'''Security in FXL''']] || How to set up rules to apply to FusionXL from Version 11&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataBAuthor|'''Data Author''']] || Create datasets and load datasets for the purpose of data authoring, validation, conversion, and publishing&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_StructureExplorer|'''Structure Explorer''']] || Create, Retrieve and Modify Structures using the Excel Ribbon&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Change_Log|'''Change Logs''']] || Change Logs for FusionXL&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataExplorer|'''Retired Functionality''']] || Functionality no longer available in V3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FXLData Topics==&lt;br /&gt;
FusionXLData is an addin for Microsoft Excel which connects to a Fusion Registry server for exploring the data catalogue, and downloading data directly into a spreadsheet.&lt;br /&gt;
&lt;br /&gt;
'''In August 2025''' a major upgrade has taken place, click her to read [[FXLData_what%27s_new_in_R1.3%3F|about the changes and new features]]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Overview_FXLData|'''Overview''']] || What is FXLData?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Getting_Started_FXLData|'''Getting Started''']] || How to download, install and configure FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Functions Reference FXLData|'''Functions Reference''']] || How to use the Parameter functions in FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Wizard|'''Data Wizard''']] || using the ribbon tool to build and edit functions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How to and other features in FXLData | '''How to and other features''']] || How to use FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[Troubleshooting_-_FXLData|'''Troubleshooting''']] || How to resolve common problems&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Change_Log|'''Change Logs''']] || Change Logs for FXLData.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Edge Server Topics ==&lt;br /&gt;
A light-weight high-performance data and metadata REST API server designed to be deployed in clusters in the DMZ or at the network edge for scalable, fault-tolerant public data dissemination use cases.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Server|'''Overview''']] || What is Fusion Edge Server?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FESInstall|'''Installation''']] || How to install Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Environment|'''Environment''']] || Edge Server environment&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Compiler|'''Compiler''']] || Edge Server Compiler&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Data_Preperation_Web_Service|'''Web Services''']] || Data Preparation Web Services &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How_to_FES|'''How to and Other Features''']] || Using Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFES|'''Change Logs''']] || Change Logs for Fusion Edge Server&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Command Line Tools ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Transformer|'''Fusion Transformer''']] || Fusion Transformer is a command-line application providing transformations between SDMX and GESMES data files and structure files.&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Registry_Command_Line|'''Fusion Registry Command Line''']] || Windows and Linux command line interface.&lt;br /&gt;
A command line interface to Fusion Registry's REST API providing utility scripts for loading structures, data and metadata, validating data, exporting content and deleting content.&lt;br /&gt;
|-&lt;br /&gt;
| [[Backup_and_Restore|'''FMRCL''']] || Tool to assist with Backup up and Restoring Structures.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Database Recovery==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Oracle_Schema_backup_on_AWS|'''Oracle Schema Backup and Restore on AWS''']] || Information on possible ways to backup and restore a DB schema using oracle tools  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=What%27s_new&amp;diff=8226</id>
		<title>What's new</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=What%27s_new&amp;diff=8226"/>
		<updated>2026-03-09T16:39:27Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==March 2026 R1.3.0.04 ==&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
[[File:H1.04 - compatability.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==March 2026 R1.3.0.03==&lt;br /&gt;
[[FXLData - New Functions |Please refer to this article which details the new functions introduced in FXLData version H1.3.0.03.]]&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
The components that have changed since H1.3.0.02 are&lt;br /&gt;
* FXL Data&lt;br /&gt;
* and Fusion Data Browser.&lt;br /&gt;
Below is the complete list of Fusion Registry versions compatible with each other component for H1.3.0.03&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module !! Version (s)&lt;br /&gt;
|-&lt;br /&gt;
| FXL Data || H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Data Browser||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Security Manager||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Portal||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion FAME  Mapper||   H1.3.0.02, H1.3.0.03&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==August 2025 - R1.3.00==&lt;br /&gt;
[[FXLData_what%27s_new_in_R1.3%3F |Please refer to this article which summarises all the changes since the last main Release in January 2025 and the product specific change logs.]]&lt;br /&gt;
&lt;br /&gt;
==July 4, 2025 - H1.2.04==&lt;br /&gt;
[[FXLData_Change_Log#H1.2.0.04_RFS_04.07.2025_.28Released_July_4.2C_2025.29 | Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
==March 12, 2025 - H1.2.03==&lt;br /&gt;
[[Change_Log_FR_-_V11_and_subsequent_releases#H1.2.0.03_RFS_12.03.25_.28Released_March_12.2C_2025.29 | Please see the change log for Fusion Registry]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-H1.2.0.03 RFS 12.03.25.pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
==March 7, 2025 - H1.2.02==&lt;br /&gt;
[[FXLData_Change_Log| Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
[[File:PDD - Enhanced Dataflow Selection Fusion Excel Data Wizard – English.pdf |Enhanced Dataflow selection in FXLData]]&lt;br /&gt;
&lt;br /&gt;
==February 20, 2025 - H1.2.01==&lt;br /&gt;
[[Change_Log_FR_-_V11_and_subsequent_releases#H1.2.0.01_RFS_20.02.25_.28Released_February_20.2C_2025.29 | Please see the change log for Fusion Registry]]&lt;br /&gt;
&lt;br /&gt;
[[FXLData_Change_Log| Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-H1.2.0.01 RFS 20.02.25 (1).pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
==January 30, 2025 - R1.2.0==&lt;br /&gt;
&lt;br /&gt;
[[Support for Multiple Measures| Support for Multiple Measures]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Web Services - GUI - Data| Web Services - GUI-Data - change to default SDMX version and ability to set a query period.]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.2.0.00 RFS 30.01.25.pdf |Release Notes]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:H1.04_-_compatability.png&amp;diff=8225</id>
		<title>File:H1.04 - compatability.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:H1.04_-_compatability.png&amp;diff=8225"/>
		<updated>2026-03-09T16:38:16Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=What%27s_new&amp;diff=8224</id>
		<title>What's new</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=What%27s_new&amp;diff=8224"/>
		<updated>2026-03-09T16:34:16Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==March 2026 R1.3.0.03==&lt;br /&gt;
[[FXLData - New Functions |Please refer to this article which details the new functions introduced in FXLData version H1.3.0.03.]]&lt;br /&gt;
&lt;br /&gt;
=== Compatibility ===&lt;br /&gt;
&lt;br /&gt;
The components that have changed since H1.3.0.02 are&lt;br /&gt;
* FXL Data&lt;br /&gt;
* and Fusion Data Browser.&lt;br /&gt;
Below is the complete list of Fusion Registry versions compatible with each other component for H1.3.0.03&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Module !! Version (s)&lt;br /&gt;
|-&lt;br /&gt;
| FXL Data || H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Data Browser||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Security Manager||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion Portal||  H1.3.0.02, H1.3.0.03&lt;br /&gt;
|-&lt;br /&gt;
| Fusion FAME  Mapper||   H1.3.0.02, H1.3.0.03&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==August 2025 - R1.3.00==&lt;br /&gt;
[[FXLData_what%27s_new_in_R1.3%3F |Please refer to this article which summarises all the changes since the last main Release in January 2025 and the product specific change logs.]]&lt;br /&gt;
&lt;br /&gt;
==July 4, 2025 - H1.2.04==&lt;br /&gt;
[[FXLData_Change_Log#H1.2.0.04_RFS_04.07.2025_.28Released_July_4.2C_2025.29 | Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
==March 12, 2025 - H1.2.03==&lt;br /&gt;
[[Change_Log_FR_-_V11_and_subsequent_releases#H1.2.0.03_RFS_12.03.25_.28Released_March_12.2C_2025.29 | Please see the change log for Fusion Registry]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-H1.2.0.03 RFS 12.03.25.pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
==March 7, 2025 - H1.2.02==&lt;br /&gt;
[[FXLData_Change_Log| Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
[[File:PDD - Enhanced Dataflow Selection Fusion Excel Data Wizard – English.pdf |Enhanced Dataflow selection in FXLData]]&lt;br /&gt;
&lt;br /&gt;
==February 20, 2025 - H1.2.01==&lt;br /&gt;
[[Change_Log_FR_-_V11_and_subsequent_releases#H1.2.0.01_RFS_20.02.25_.28Released_February_20.2C_2025.29 | Please see the change log for Fusion Registry]]&lt;br /&gt;
&lt;br /&gt;
[[FXLData_Change_Log| Please see the change log for FXLData]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-H1.2.0.01 RFS 20.02.25 (1).pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
==January 30, 2025 - R1.2.0==&lt;br /&gt;
&lt;br /&gt;
[[Support for Multiple Measures| Support for Multiple Measures]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Web Services - GUI - Data| Web Services - GUI-Data - change to default SDMX version and ability to set a query period.]]&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.2.0.00 RFS 30.01.25.pdf |Release Notes]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8223</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8223"/>
		<updated>2026-03-09T13:36:31Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
== R2.0.0.00_RFS_26.06.26 estimated release date June 6, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8222</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8222"/>
		<updated>2026-02-25T17:21:11Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Fusion Registry */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Upgrade from Spring 5 to Spring 7&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8221</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8221"/>
		<updated>2026-02-24T12:52:23Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Fusion Registry */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring?&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures [[Load_Structures#Submitting_Invalid_Structures| read more]]&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8220</id>
		<title>Support Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8220"/>
		<updated>2026-02-24T12:44:55Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
&lt;br /&gt;
Due to be released in Version Version 26.2.0.00_RSH-FS_28.05.26, a new feature called the &amp;quot;Support Tab&amp;quot; will be introduced.&lt;br /&gt;
&lt;br /&gt;
This graphical control appears on the right-hand side of most pages within the Registry. When clicked, it opens a pop-up modal designed to provide users with guidance on addressing any issues they may encounter. The content op this modal can be set by the system administrators and it supports HTML. However it is restricted to a maximum of 4,000 characters and external images are not supported..&lt;br /&gt;
&lt;br /&gt;
==Appearance==&lt;br /&gt;
After content is added to the Support Tab, a new control will be displayed on the right-hand side of most screens. Clicking it opens a modal containing the predefined content. Users can dismiss the modal by clicking anywhere outside of the modal or by pressing the Escape key on their keyboard. The content remains the same across all pages, as the Support Tab feature does not allow for page-specific text variations.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Control.png|The Support Tab control|500px]]&lt;br /&gt;
[[File:SupportTab-Modal.png|Sample contents of the Support Tab Modal|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Content==&lt;br /&gt;
&lt;br /&gt;
The contents of the Support Tab can be set on the Registry settings page: Settings -&amp;gt; General Settings.  Simply enter the text or HTML in the field labelled &amp;quot;Support Text&amp;quot; and click the &amp;quot;Apply Settings&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Setting.png|Setting the content of the support tab|1000px]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Load_Structures&amp;diff=8219</id>
		<title>Load Structures</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Load_Structures&amp;diff=8219"/>
		<updated>2026-02-24T08:17:45Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Submitting Invalid Structures */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
=Overview=&lt;br /&gt;
Structures can be loaded into the registry in a number of ways but first you have to have some to load. If you already have structures to load, please skip to the '''Loading Structures''' Section below.&lt;br /&gt;
&lt;br /&gt;
=Obtaining Structures=&lt;br /&gt;
&lt;br /&gt;
All structures must be compliant with the SDMX Standard. &lt;br /&gt;
&lt;br /&gt;
Whilst you can easily create Structure from scratch, there are a number of other options available.&lt;br /&gt;
&lt;br /&gt;
==Using Export Structures options in another Registry==&lt;br /&gt;
Please see this article [[Using_Bulk_Actions_to_Export_Structures|which explains how to do this]].&lt;br /&gt;
&lt;br /&gt;
==Using Web Services option in another Registry==&lt;br /&gt;
Structures can be obtained using the Web Service option from another Registry. The image below shows the Demo Site with Web Services and Structure selected.&lt;br /&gt;
&lt;br /&gt;
[[File:LS1.png|Web Service Page in metadata Technology's Demo site|1000px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use the selection boxes to define what you want and then you can either download the structures OR copy the URL to use when uploading.&lt;br /&gt;
&lt;br /&gt;
==Using Environmental Sync==&lt;br /&gt;
&lt;br /&gt;
See this article [[Synchronise_structural_metadata_between_FMR_environments|for more information on how to do this]].&lt;br /&gt;
&lt;br /&gt;
=Loading Structures=&lt;br /&gt;
&lt;br /&gt;
==Before you start==&lt;br /&gt;
* To Load a Structure(s) you do need to be logged in to the Registry.&lt;br /&gt;
* To successfully load a Structure make sure that the owning Agency already exists (select '''Organisation''' from the main menu then '''Agencies''').&lt;br /&gt;
&lt;br /&gt;
==Loading a Structure==&lt;br /&gt;
On most pages of the Registry, at the top right of the page you will see the Load Structures button (as long as you are logged in).&lt;br /&gt;
&lt;br /&gt;
[[File:LS0.png|200px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once this button is clicked the Upload option will open as shown in the image below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS2.png|Loading using a File|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Either search for and a select file (individual files or Zip files can be used) using Windows Explorer '''OR''' select the URL button which will display an additional field for you to enter a URL location of the structure. &lt;br /&gt;
&lt;br /&gt;
See the [[Load_Structures#Using_Web_Services_option_in_another_Registry|Web Services]] option above for more details on how to obtain an appropriate URL as shown in the example below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS3.png|Loading using an URL|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Import Actions==&lt;br /&gt;
&lt;br /&gt;
Before the structures are imported you have further options available:&lt;br /&gt;
===Append===&lt;br /&gt;
A structure file loaded with action 'Append' may only add new structures and may not overwrite any existing structures.&lt;br /&gt;
&lt;br /&gt;
===Replace===&lt;br /&gt;
A structure file loaded with action 'Replace' may add new structures to the Registry, and can also replace existing structures with new ones. Replace is the default selection.&lt;br /&gt;
&lt;br /&gt;
===Merge=== &lt;br /&gt;
A structure file loaded with action 'Merge' may add new structures and replace existing structures - however for [[Item_Scheme|Item Schemes]] (Codelists, Concept Schemes, Agency Schemes, Data Provider Schemes) the items submitted will be added to the existing scheme. For example if a Codelist exists with Codes A, B, and C, and the same Codelist is submitted with Codes B and X, then the resulting Codelist will have Codes A, B, C, X - the Merge submission has Replaced Code B and Added code X to the Codelist.&lt;br /&gt;
&lt;br /&gt;
===Full Replace===&lt;br /&gt;
A structure file loaded with action 'Full Replace' will remove all existing structures from the Registry and replace them with the contents of the loaded file. This is a useful feature when you are copying structures from one environment to another.&lt;br /&gt;
&lt;br /&gt;
==Upload Successful==&lt;br /&gt;
Once the import process has finished, you will see a Submission report as shown in the example below. You can also '''Abort''' the process from here.&lt;br /&gt;
&lt;br /&gt;
[[File:LS4.png|Submission Report|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you '''Confirm''' the structure will be loaded into the relevant area where you can view and edit it.&lt;br /&gt;
&lt;br /&gt;
'''Note''': if you are uploading a large number of Structures it can take a little while before the structures are visible. A good way of checking is to Navigate to the bulk Actions page.&lt;br /&gt;
&lt;br /&gt;
==Upload Unsuccessful==&lt;br /&gt;
If for whatever reason the upload fails, you will be presented with an error message advising you what the problem was, similar to the one shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS5.png|Example Error Message|1000px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Submitting Invalid Structures==&lt;br /&gt;
From Version 26.2.0.00_RSH-FS_28.05.26, by default the Upload functionality will &amp;quot;skip&amp;quot; structures that are deemed to be invalid. The advantage of this is that if a structure file containing invalid structures is submitted, the valid structures can be submitted to the Registry without the invalid structures preventing this.  There are 2 types of invalidity check performed in the FMR:&lt;br /&gt;
&lt;br /&gt;
* Missing cross-references - where a structure refers to another structure that does not exist in either the Registry, nor the structure file itself.&lt;br /&gt;
* Failing business validation - where a structure is invalid against the schema.  For example, submitting partial structures, or the submission of a DataConstraint with Role specified as 'Actual' which is not supported.&lt;br /&gt;
&lt;br /&gt;
Structures that are not covered by this are structures that cannot be constructed from the submitted file, for example due to invalid XML.&lt;br /&gt;
&lt;br /&gt;
When a structure file is submitted with invalid structures, the submission report is shown as usual, along with a warning message and an extra button is also displayed ('View Invalid Structures'). Clicking this button will display a modal stating the structures that have failed validation and their reason for failure.&lt;br /&gt;
&lt;br /&gt;
Please remember that the Registry enforces structural integrity and if a valid structure is invalidated by one of its descendants, it can not be loaded and will be deemed invalid. For example:  a Dataflow that refers to a Data Structure that refers to a Concept Scheme which has an invalid reference (e.g. a Concept refers to a Codelist that does not exist), the Registry will prevent any of those structures being loaded. All failing structures would be listed in the validation report. This is illustrated in the example below, where a structure file was loaded which contains 2 Codelists, 3 Concept Schemes, 1 DataStructure and 1 Dataflow. One of the Concept Schemes references an invalid Codelist which is referenced by the DataStructure and Dataflow, thus these structures are not considered valid and can not be loaded until a change is made to the Concept Scheme with the invalid reference.&lt;br /&gt;
&lt;br /&gt;
[[File:SubmissionWithWarnings.png|Submission with structures failing validation|400px]]&lt;br /&gt;
[[File:FailingValidation.png|List of structures that have failed validation|652px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Common Problems===&lt;br /&gt;
* No change detected from the structure already present&lt;br /&gt;
* Incorrect file type&lt;br /&gt;
* Owning Agency not present&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:FailingValidation.png&amp;diff=8218</id>
		<title>File:FailingValidation.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:FailingValidation.png&amp;diff=8218"/>
		<updated>2026-02-24T08:17:24Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:SubmissionWithWarnings.png&amp;diff=8217</id>
		<title>File:SubmissionWithWarnings.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:SubmissionWithWarnings.png&amp;diff=8217"/>
		<updated>2026-02-24T08:16:34Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Load_Structures&amp;diff=8216</id>
		<title>Load Structures</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Load_Structures&amp;diff=8216"/>
		<updated>2026-02-24T08:14:09Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
=Overview=&lt;br /&gt;
Structures can be loaded into the registry in a number of ways but first you have to have some to load. If you already have structures to load, please skip to the '''Loading Structures''' Section below.&lt;br /&gt;
&lt;br /&gt;
=Obtaining Structures=&lt;br /&gt;
&lt;br /&gt;
All structures must be compliant with the SDMX Standard. &lt;br /&gt;
&lt;br /&gt;
Whilst you can easily create Structure from scratch, there are a number of other options available.&lt;br /&gt;
&lt;br /&gt;
==Using Export Structures options in another Registry==&lt;br /&gt;
Please see this article [[Using_Bulk_Actions_to_Export_Structures|which explains how to do this]].&lt;br /&gt;
&lt;br /&gt;
==Using Web Services option in another Registry==&lt;br /&gt;
Structures can be obtained using the Web Service option from another Registry. The image below shows the Demo Site with Web Services and Structure selected.&lt;br /&gt;
&lt;br /&gt;
[[File:LS1.png|Web Service Page in metadata Technology's Demo site|1000px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can use the selection boxes to define what you want and then you can either download the structures OR copy the URL to use when uploading.&lt;br /&gt;
&lt;br /&gt;
==Using Environmental Sync==&lt;br /&gt;
&lt;br /&gt;
See this article [[Synchronise_structural_metadata_between_FMR_environments|for more information on how to do this]].&lt;br /&gt;
&lt;br /&gt;
=Loading Structures=&lt;br /&gt;
&lt;br /&gt;
==Before you start==&lt;br /&gt;
* To Load a Structure(s) you do need to be logged in to the Registry.&lt;br /&gt;
* To successfully load a Structure make sure that the owning Agency already exists (select '''Organisation''' from the main menu then '''Agencies''').&lt;br /&gt;
&lt;br /&gt;
==Loading a Structure==&lt;br /&gt;
On most pages of the Registry, at the top right of the page you will see the Load Structures button (as long as you are logged in).&lt;br /&gt;
&lt;br /&gt;
[[File:LS0.png|200px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once this button is clicked the Upload option will open as shown in the image below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS2.png|Loading using a File|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Either search for and a select file (individual files or Zip files can be used) using Windows Explorer '''OR''' select the URL button which will display an additional field for you to enter a URL location of the structure. &lt;br /&gt;
&lt;br /&gt;
See the [[Load_Structures#Using_Web_Services_option_in_another_Registry|Web Services]] option above for more details on how to obtain an appropriate URL as shown in the example below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS3.png|Loading using an URL|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Import Actions==&lt;br /&gt;
&lt;br /&gt;
Before the structures are imported you have further options available:&lt;br /&gt;
===Append===&lt;br /&gt;
A structure file loaded with action 'Append' may only add new structures and may not overwrite any existing structures.&lt;br /&gt;
&lt;br /&gt;
===Replace===&lt;br /&gt;
A structure file loaded with action 'Replace' may add new structures to the Registry, and can also replace existing structures with new ones. Replace is the default selection.&lt;br /&gt;
&lt;br /&gt;
===Merge=== &lt;br /&gt;
A structure file loaded with action 'Merge' may add new structures and replace existing structures - however for [[Item_Scheme|Item Schemes]] (Codelists, Concept Schemes, Agency Schemes, Data Provider Schemes) the items submitted will be added to the existing scheme. For example if a Codelist exists with Codes A, B, and C, and the same Codelist is submitted with Codes B and X, then the resulting Codelist will have Codes A, B, C, X - the Merge submission has Replaced Code B and Added code X to the Codelist.&lt;br /&gt;
&lt;br /&gt;
===Full Replace===&lt;br /&gt;
A structure file loaded with action 'Full Replace' will remove all existing structures from the Registry and replace them with the contents of the loaded file. This is a useful feature when you are copying structures from one environment to another.&lt;br /&gt;
&lt;br /&gt;
==Upload Successful==&lt;br /&gt;
Once the import process has finished, you will see a Submission report as shown in the example below. You can also '''Abort''' the process from here.&lt;br /&gt;
&lt;br /&gt;
[[File:LS4.png|Submission Report|400px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you '''Confirm''' the structure will be loaded into the relevant area where you can view and edit it.&lt;br /&gt;
&lt;br /&gt;
'''Note''': if you are uploading a large number of Structures it can take a little while before the structures are visible. A good way of checking is to Navigate to the bulk Actions page.&lt;br /&gt;
&lt;br /&gt;
==Upload Unsuccessful==&lt;br /&gt;
If for whatever reason the upload fails, you will be presented with an error message advising you what the problem was, similar to the one shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:LS5.png|Example Error Message|1000px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Submitting Invalid Structures===&lt;br /&gt;
From Version 26.2.0.00_RSH-FS_28.05.26, by default the Upload functionality will &amp;quot;skip&amp;quot; structures that are deemed to be invalid. The advantage of this is that if a structure file containing invalid structures is submitted, the valid structures can be submitted to the Registry without the invalid structures preventing this.  There are 2 types of invalidity check performed in the FMR:&lt;br /&gt;
&lt;br /&gt;
* Missing cross-references - where a structure refers to another structure that does not exist in either the Registry, nor the structure file itself.&lt;br /&gt;
* Failing business validation - where a structure is invalid against the schema.  For example, submitting partial structures, or the submission of a DataConstraint with Role specified as 'Actual' which is not supported.&lt;br /&gt;
&lt;br /&gt;
Structures that are not covered by this are structures that cannot be constructed from the submitted file, for example due to invalid XML.&lt;br /&gt;
&lt;br /&gt;
When a structure file is submitted with invalid structures, the submission report is shown as usual, along with a warning message and an extra button is also displayed ('View Invalid Structures'). Clicking this button will display a modal stating the structures that have failed validation and their reason for failure.&lt;br /&gt;
&lt;br /&gt;
Please remember that the Registry enforces structural integrity and if a valid structure is invalidated by one of its descendants, it can not be loaded and will be deemed invalid. For example:  a Dataflow that refers to a Data Structure that refers to a Concept Scheme which has an invalid reference (e.g. a Concept refers to a Codelist that does not exist), the Registry will prevent any of those structures being loaded. All failing structures would be listed in the validation report. This is illustrated in the example below, where a structure file was loaded which contains 2 Codelists, 3 Concept Schemes, 1 DataStructure and 1 Dataflow. One of the Concept Schemes references an invalid Codelist which is referenced by the DataStructure and Dataflow, thus these structures are not considered valid and can not be loaded until a change is made to the Concept Scheme with the invalid reference.&lt;br /&gt;
&lt;br /&gt;
[[File:SubmissionWithWarnings.png|Submission with structures failing validation|400px]]&lt;br /&gt;
[[File:FailingValidation.png|List of structures that have failed validation|652px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Common Problems===&lt;br /&gt;
* No change detected from the structure already present&lt;br /&gt;
* Incorrect file type&lt;br /&gt;
* Owning Agency not present&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8215</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8215"/>
		<updated>2026-02-23T14:56:49Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Fusion Registry */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring?&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service [[Database_Consistency_Web_Service| read more]]&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Database_Consistency_Web_Service&amp;diff=8214</id>
		<title>Database Consistency Web Service</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Database_Consistency_Web_Service&amp;diff=8214"/>
		<updated>2026-02-23T14:52:43Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Created page with &amp;quot;Category:WebService =Overview= The Registry (Version 11), stores maintainable structures in a number of forms within its database. It is extremely unlikely that these form...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:WebService]]&lt;br /&gt;
=Overview=&lt;br /&gt;
The Registry (Version 11), stores maintainable structures in a number of forms within its database. It is extremely unlikely that these formats become inconsistent, but a mechanism exists to check that the various formats are consistent. This mechanism is a simple Web Service that can be invoked by any user with administration privileges. This Web Service is available in Version 26.2.0.00_RSH-FS_28.05.26 and later.&lt;br /&gt;
&lt;br /&gt;
==Detail==&lt;br /&gt;
The Fusion Metadata Registry stores structure metadata in the following tables:&lt;br /&gt;
* '''registry_maintainable_ser''': this table stores the Java serialised form of each individual metadata structure. There serialised objects are loaded on application startup, since it is faster than constructing a new Java object from the XML.&lt;br /&gt;
* '''registry_maintainable_sdmx''': this table stores the SDMX-ML form of the individual metadata structure. This table is a backup for the &amp;quot;serialised&amp;quot; table. If an structure cannot be deserialsed, then the structure is obtained from this table.&lt;br /&gt;
* '''tx_backup''': this table stores the SDMX-ML form of structures, grouped together by the transaction they were submitted within rather than storing each structure individually.&lt;br /&gt;
&lt;br /&gt;
When a new structure is submitted, or an existing structure is modified, each of the above 3 tables will be updated.&lt;br /&gt;
&lt;br /&gt;
==Check Database Consistency Web Service==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background-color:#eaecf0&amp;quot;|&amp;lt;b&amp;gt;Entry Point&amp;lt;/b&amp;gt;|| &amp;lt;b&amp;gt; /ws/secure/structure/databaseconsistency&amp;lt;/b&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background-color:#eaecf0&amp;quot;|&amp;lt;b&amp;gt;Access&amp;lt;/b&amp;gt;|| &amp;lt;span style='color:green'&amp;gt;&amp;lt;b&amp;gt;Secure&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background-color:#eaecf0&amp;quot;|&amp;lt;b&amp;gt;Http Method&amp;lt;/b&amp;gt;|| GET&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background-color:#eaecf0&amp;quot;|&amp;lt;b&amp;gt;Response Format&amp;lt;/b&amp;gt;|| JSON&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background-color:#eaecf0&amp;quot;|&amp;lt;b&amp;gt;Response Statuses&amp;lt;/b&amp;gt;|| &amp;lt;p&amp;gt;&amp;lt;b&amp;gt;200&amp;lt;/b&amp;gt; - Success&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;400&amp;lt;/b&amp;gt; - Unauthorized&amp;lt;/p&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: Because the service has to communicate with the database, it may take a while to run. The time taken depends upon the speed of connection to the database and the number of structural metadata within your Registry. If you wish to see the progress of the Web Service inspect the Fusion Registry log. The process will write a number of log statements (at INFO level) which will state the number of the current item being checked, along with the total number of items to process. &lt;br /&gt;
&lt;br /&gt;
==Example Output==&lt;br /&gt;
The Web Service produces JSON output stating the following:&lt;br /&gt;
* is the database consistent&lt;br /&gt;
* the number of maintainables that were checked&lt;br /&gt;
* a JSON Array listing the URNs of Maintainable Structures that differ in the table 'registry_maintainable_sdmx'&lt;br /&gt;
* a JSON Array listing the URNs of Maintainable Structures that differ in the table 'tx_backup'&lt;br /&gt;
&lt;br /&gt;
An example of the full output:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;Consistency&amp;quot;: false,&lt;br /&gt;
  &amp;quot;MaintainablesChecked&amp;quot;: 2053,&lt;br /&gt;
  &amp;quot;DifferingSdmx&amp;quot;: [&lt;br /&gt;
    &amp;quot;[]&amp;quot;&lt;br /&gt;
  ],&lt;br /&gt;
  &amp;quot;DifferingTxn&amp;quot;: [&lt;br /&gt;
    &amp;quot;[urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:AAA(1.0)]&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This shows that the database is not consistent, and that 2,053 items were checked. Since the field 'DifferingSdmx' has an empty JSON array, the items in the table 'registry_maintainable_sdmx' do not differ to the metadata in memory. The field 'DifferingTxn&amp;quot; has a JSON array containing a single URN for the codelist SDMX:AAA(1.0). This means that the codelist stored in the table 'tx_backup' is not consistent with the codelist held in memory.&lt;br /&gt;
&lt;br /&gt;
To determine what the differences are, please refer to the log file of the Registry. An example of output stating the difference is:&lt;br /&gt;
&lt;br /&gt;
  WARN qtp258754732-94 io.sdmx.core.fmr.manager.report.DatabaseConsistencyChecker - Difference exists for : urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:AAA(1.0)&lt;br /&gt;
  WARN qtp258754732-94 io.sdmx.core.fmr.manager.report.DatabaseConsistencyChecker - [EDIT,urn:sdmx:org.sdmx.infomodel.codelist.Codelist=SDMX:AAA(1.0),Name,AAA,AAA-Updated]&lt;br /&gt;
&lt;br /&gt;
This shows that for this codelist, there is a difference ('EDIT') for the property ''''Name'''' and that in memory the codelist name is ''''AAA'''' but in the database it is stored as ''''AAA-Updated''''.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
An example of the consistency checker being invoked:&lt;br /&gt;
&lt;br /&gt;
 https://example.registry.com/ws/secure/structure/databaseconsistency&lt;br /&gt;
&lt;br /&gt;
==Known Issues==&lt;br /&gt;
If your system has codelists which use inheritance to inherit from other codelists, you may receive reports stating that differences exists. This is a known issue and will be addressed in a later release.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8213</id>
		<title>Support Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8213"/>
		<updated>2026-02-21T14:12:56Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
&lt;br /&gt;
Due to be released in Version Version 26.2.0.00_RSH-FS_28.05.26, a new feature called the &amp;quot;Support Tab&amp;quot; will be introduced.&lt;br /&gt;
&lt;br /&gt;
This graphical control appears on the right-hand side of most pages within the Registry. When clicked, it opens a pop-up modal designed to provide users with guidance on addressing any issues they may encounter. The content op this modal can be set by the system administrators and it supports HTML. However it is restricted to a maximum of 4,000 characters.&lt;br /&gt;
&lt;br /&gt;
==Appearance==&lt;br /&gt;
After content is added to the Support Tab, a new control will be displayed on the right-hand side of most screens. Clicking it opens a modal containing the predefined content. Users can dismiss the modal by clicking anywhere outside of the modal or by pressing the Escape key on their keyboard. The content remains the same across all pages, as the Support Tab feature does not allow for page-specific text variations.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Control.png|The Support Tab control|500px]]&lt;br /&gt;
[[File:SupportTab-Modal.png|Sample contents of the Support Tab Modal|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Content==&lt;br /&gt;
&lt;br /&gt;
The contents of the Support Tab can be set on the Registry settings page: Settings -&amp;gt; General Settings.  Simply enter the text or HTML in the field labelled &amp;quot;Support Text&amp;quot; and click the &amp;quot;Apply Settings&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Setting.png|Setting the content of the support tab|1000px]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8212</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8212"/>
		<updated>2026-02-21T12:26:40Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Fusion Registry */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring?&lt;br /&gt;
* Support pop up box introduced [[Support_Tab| read more]]&lt;br /&gt;
* Database consistency checker web service&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8211</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8211"/>
		<updated>2026-02-21T12:24:18Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* FXLData Enhancements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring?&lt;br /&gt;
* Support pop up box introduced&lt;br /&gt;
* Database consistency checker web service&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Plus Miscellaneous bug fixes and minor enhancements, full details of which will be available in the Release Notes and Change Logs. ====&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8210</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8210"/>
		<updated>2026-02-21T12:22:27Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring?&lt;br /&gt;
* Support pop up box introduced&lt;br /&gt;
* Database consistency checker web service&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8209</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8209"/>
		<updated>2026-02-21T12:01:04Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
&lt;br /&gt;
===Fusion Registry ===&lt;br /&gt;
* Spring6 Framework Upgrade&lt;br /&gt;
* Support pop up box introduced&lt;br /&gt;
* Database consistency checker web service&lt;br /&gt;
* Semantic and Non-Semantic structure versions - ability to co-exist&lt;br /&gt;
* Bulk Actions to include Hierarchy Associations&lt;br /&gt;
* Loading structures - ability to skip invalid structures&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Introduction of System Properties reporter&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Setting.png&amp;diff=8208</id>
		<title>File:SupportTab-Setting.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Setting.png&amp;diff=8208"/>
		<updated>2026-02-20T12:35:48Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Modal.png&amp;diff=8207</id>
		<title>File:SupportTab-Modal.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Modal.png&amp;diff=8207"/>
		<updated>2026-02-20T12:34:13Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Control.png&amp;diff=8206</id>
		<title>File:SupportTab-Control.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:SupportTab-Control.png&amp;diff=8206"/>
		<updated>2026-02-20T12:32:49Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8205</id>
		<title>Support Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8205"/>
		<updated>2026-02-19T16:54:24Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
&lt;br /&gt;
Due to be released in Version Version 26.2.0.00_RSH-FS_28.05.26, a new feature called the &amp;quot;Support Tab&amp;quot; will be introduced.&lt;br /&gt;
&lt;br /&gt;
This graphical control appears on the right-hand side of most pages within the Registry. When clicked, it opens a pop-up modal designed to provide users with guidance on addressing any issues they may encounter. The content op this modal can be set by the system administrators and it supports HTML. However it is restricted to a maximum of 4,000 characters.&lt;br /&gt;
&lt;br /&gt;
'''To do''', obtain images and upload : https://fmrwiki.sdmxcloud.org/Support_Tab&lt;br /&gt;
==Appearance==&lt;br /&gt;
After content is added to the Support Tab, a new control will be displayed on the right-hand side of most screens. Clicking it opens a modal containing the predefined content. Users can dismiss the modal by clicking anywhere outside of the modal or by pressing the Escape key on their keyboard. The content remains the same across all pages, as the Support Tab feature does not allow for page-specific text variations.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Control.png|The Support Tab control|500px]]&lt;br /&gt;
[[File:SupportTab-Modal.png|Sample contents of the Support Tab Modal|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Content==&lt;br /&gt;
&lt;br /&gt;
The contents of the Support Tab can be set on the Registry settings page: Settings -&amp;gt; General Settings.  Simply enter the text or HTML in the field labelled &amp;quot;Support Text&amp;quot; and click the &amp;quot;Apply Settings&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Setting.png|Setting the content of the support tab|1000px]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8204</id>
		<title>Support Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Support_Tab&amp;diff=8204"/>
		<updated>2026-02-19T16:53:48Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Created page with &amp;quot;Category:How_To  Due to be released in Version Version 26.2.0.00_RSH-FS_28.05.26, a new feature called the &amp;quot;Support Tab&amp;quot; will be introduced.  This graphical control appear...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How_To]]&lt;br /&gt;
&lt;br /&gt;
Due to be released in Version Version 26.2.0.00_RSH-FS_28.05.26, a new feature called the &amp;quot;Support Tab&amp;quot; will be introduced.&lt;br /&gt;
&lt;br /&gt;
This graphical control appears on the right-hand side of most pages within the Registry. When clicked, it opens a pop-up modal designed to provide users with guidance on addressing any issues they may encounter. The content op this modal can be set by the system administrators and it supports HTML. However it is restricted to a maximum of 4,000 characters.&lt;br /&gt;
==Appearance==&lt;br /&gt;
After content is added to the Support Tab, a new control will be displayed on the right-hand side of most screens. Clicking it opens a modal containing the predefined content. Users can dismiss the modal by clicking anywhere outside of the modal or by pressing the Escape key on their keyboard. The content remains the same across all pages, as the Support Tab feature does not allow for page-specific text variations.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Control.png|The Support Tab control|500px]]&lt;br /&gt;
[[File:SupportTab-Modal.png|Sample contents of the Support Tab Modal|500px]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Content==&lt;br /&gt;
&lt;br /&gt;
The contents of the Support Tab can be set on the Registry settings page: Settings -&amp;gt; General Settings.  Simply enter the text or HTML in the field labelled &amp;quot;Support Text&amp;quot; and click the &amp;quot;Apply Settings&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:SupportTab-Setting.png|Setting the content of the support tab|1000px]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8203</id>
		<title>Release Plans</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Release_Plans&amp;diff=8203"/>
		<updated>2026-02-17T09:29:53Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Version 26.2.0.00_RSH-FS_28.05.26 estimated release date May 28, 2026 ==&lt;br /&gt;
* Spring6 Framework Upgrade&lt;br /&gt;
* Bug Fixes and minor enhancements (full details of which will be provided in the Release notes and change log.)&lt;br /&gt;
&lt;br /&gt;
===Fusion Data Browser ===&lt;br /&gt;
* Implementation of loading indicator&lt;br /&gt;
&lt;br /&gt;
=== FXLData Enhancements ===&lt;br /&gt;
* Introduction of login functionality&lt;br /&gt;
* Support for hierarchical structures in the query builder&lt;br /&gt;
* Improved medium verbosity logging: limited to API request URLs and response codes&lt;br /&gt;
* Alignment of result grid data order with selected codes in the query builder&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8202</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8202"/>
		<updated>2026-02-17T09:28:06Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Release Plans */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:&amp;lt;span style=&amp;quot;opacity:0;position:absolute;&amp;quot;&amp;gt;{{FULLPAGENAME}}&amp;lt;/span&amp;gt;}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:2.0rem;&amp;quot;&amp;gt;Regnology Fusion Statistics Knowledge Base&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
==SDMX Statistical Data Warehouse==&lt;br /&gt;
&lt;br /&gt;
Regnology Fusion Statistics is for central banks, international organisations, national statistics offices, development banks and regional statistics authorities who need an enterprise SDMX statistical data warehouse for storage of aggregated time series, data cataloguing and public dissemination. '''Reade more''' about SDMX here: [https://www.regnology.net/en/resources/regulatory-topics/sdmx/ What is SDMX?].&lt;br /&gt;
&lt;br /&gt;
Click here to see a visual representation of the [[Fusion_Registry_Core_Software_Stack|Fusion Registry Core Software Stack.]] Click here to read more about [[Fusion_Registry_Overview| Key Use Cases.]]&lt;br /&gt;
&lt;br /&gt;
== Release Plans ==&lt;br /&gt;
'''February 2026''' - [https://email.regnology.net/harmonized-release-cycle-nomenclature-for-the-regnology-supervisory-hub-rsh?ecid=&amp;amp;utm_source=hs_email&amp;amp;utm_medium=email&amp;amp;_hsenc=p2ANqtz-8k1x3QloJAxsbKWXoazbn6M6u-uMRLRREeIqMPkgKjwI_utAAuoyTsjykx3n633VJ-vcX4| Important announcement regarding Relace Cycle and Release naming convention.]&lt;br /&gt;
&lt;br /&gt;
[[Release_Plans| Click here to view our future plans for Regnology Fusion Statistics.]]&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==What's new?==&lt;br /&gt;
[[What%27s_new|  Click here to access more information on changes implemented in Releases and Hot Fixes from January 2025 onwards.]]&lt;br /&gt;
&lt;br /&gt;
== How to download a new version==&lt;br /&gt;
[[File:How to obtain a Release-aug-2025.pdf | Click here to download instructions on how to uses the delivery software.]]'''&lt;br /&gt;
&lt;br /&gt;
==Open Source Software (OSS) / Third Party Components==&lt;br /&gt;
[[Open_Source_Software_(OSS)_/_Third_Party_Components|Click here for more details.]]&lt;br /&gt;
&lt;br /&gt;
==Components and Modules==&lt;br /&gt;
Regnology Fusion Statistics consists of a number of modules centered on the Fusion Registry core data warehouse engine, including a secure high-performance data dissemination server and a configurable data explorer and analytics tool for data consumers and analysts. &lt;br /&gt;
&lt;br /&gt;
Fusion Registry has an integrated SDMX structural metadata registry that is 100% compatible with Fusion Metadata Registry.&lt;br /&gt;
&lt;br /&gt;
[[File:Modules-Oct23.png|900px]]&lt;br /&gt;
&lt;br /&gt;
==Fusion Registry Topics==&lt;br /&gt;
SDMX statistical data engine and structural metadata registry. The main statistical engine for data collection, integration, processing, storage, query execution and time-series calculations. It provides an SDMX-compliant data and metadata REST API. The integrated SDMX structural metadata registry acts as the central repository, authoring and maintenance tool for all of the structures including Codelists, Concepts and Data Structure Definitions.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Fusion_Registry_Overview|'''Overview''']]|| What is Fusion Registry?&lt;br /&gt;
|-&lt;br /&gt;
| | [[Fusion_Registry_-_Install,_Update_and_Configure |''' Fusion Registry Install, Update and Configure ''']]|| How to install, update  and configure the Registry   &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SDMX Structures|'''SDMX Structures''']]|| Detailed explanations of the main SDMX structural metadata artefacts &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Structural Metadata|'''Structure Maintenance''']]|| How to maintain the SDMX Structures&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Reference_Metadata|'''Reference Metadata''']] || Guidance on working with SDMX 3.0 reference metadata in Fusion Registry 11&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How To|'''How to and other Features''']] || Guidance on specific tasks using Fusion Registry&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SdmxDataFormat|'''Data Formats''']] || A description of supported Data Formats&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RegistrySecurity|'''Security''']] || Authentication and Authorisation Features&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:WebService|'''Web Services''']] || Registry Web Services&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFR|'''Change Logs''']] || Change Logs for Registry 11 and Registry 10&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RetiredFunctionality|'''Retired Functionality''']] || Functionality no longer valid in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Portal Topics==&lt;br /&gt;
Fusion Portal is a web application made up of HTML, JavaScript, Images, and CSS files. The Portal allows you to call data from SDMX Webservices and other sources which enables you to obtain data from the data provider and import it directly into Fusion Registry.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion_Portal_Install |'''Installation and Configuration''']]|| How to install and Configure the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Data Portal Functions |'''How to and other Features''']] || Guidance on using Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:CRON-DP |'''Cron''' ]] || Using Cron to schedule regular synchronisations&lt;br /&gt;
|-&lt;br /&gt;
| [[Portal_Web_Services|'''Web Services''']] || List of Web Services specific to the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Portal|'''Change Logs''']] || Change Logs for Fusion Portal&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Security Manager Topics==&lt;br /&gt;
Available in Fusion Registry 11, a user interface which allows authorisation and rules to be created which explicitly permit or deny a security group access to a resource. The default behaviour of is to make everything private. In order to make structures and data public, specific security rules must be defined to grant access.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FSM_Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Security_Manager_(FR_V11) |'''How to and other Features''']] || Guidance on using Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Security_Manager|'''Change Logs''']] || Change Logs for Fusion Security Manager.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Fame Mapper Topics ==&lt;br /&gt;
Web tool for creating and maintaining Fusion Registry FAME to SDMX series mappings.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FFM Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Fame_Mapper |'''How to and other Features''']] || Guidance on using Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Fame_Mapper|'''Change Logs''']] || Change Logs for Fame Mapper&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Data Browser Topics==&lt;br /&gt;
Web tool for data consumers to explore the Fusion Registry data catalogue, create charts and tables, and download data.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Data_Browser |'''Overview ''']]|| What is Fusion Data Browser?&lt;br /&gt;
|-&lt;br /&gt;
| [[A_beginners_guide_to_Fusion_Data_Browser |'''Getting Started''']]|| Non-technical guide for using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Anatomy_of_the_Data_Browser |'''Anatomy of the Data Browser''']]|| Technical guide detailing techniques and solutions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FDB Install and Configure |'''Installation and Configuration''']]|| How to install and Configure the Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Data Browser |'''How to and Functions''']] || Using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Data_Browser|'''Change Logs''']] || Change Logs for Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Registry Data Browser|'''Retired Functionality''']] || Functionality no longer available in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FusionXL Topics==&lt;br /&gt;
FusionXL is an addin for Microsoft Excel which connects to a Fusion Registry server for both data and structure retrieval, and maintenance.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Install|'''Installation''']] || How to Install Fusion XL and connect to a Fusion Registry server&lt;br /&gt;
|-&lt;br /&gt;
| [[Security in FXL |'''Security in FXL''']] || How to set up rules to apply to FusionXL from Version 11&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataBAuthor|'''Data Author''']] || Create datasets and load datasets for the purpose of data authoring, validation, conversion, and publishing&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_StructureExplorer|'''Structure Explorer''']] || Create, Retrieve and Modify Structures using the Excel Ribbon&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Change_Log|'''Change Logs''']] || Change Logs for FusionXL&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataExplorer|'''Retired Functionality''']] || Functionality no longer available in V3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FXLData Topics==&lt;br /&gt;
FusionXLData is an addin for Microsoft Excel which connects to a Fusion Registry server for exploring the data catalogue, and downloading data directly into a spreadsheet.&lt;br /&gt;
&lt;br /&gt;
'''In August 2025''' a major upgrade has taken place, click her to read [[FXLData_what%27s_new_in_R1.3%3F|about the changes and new features]]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Overview_FXLData|'''Overview''']] || What is FXLData?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Getting_Started_FXLData|'''Getting Started''']] || How to download, install and configure FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Functions Reference FXLData|'''Functions Reference''']] || How to use the Parameter functions in FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Wizard|'''Data Wizard''']] || using the ribbon tool to build and edit functions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How to and other features in FXLData | '''How to and other features''']] || How to use FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[Troubleshooting_-_FXLData|'''Troubleshooting''']] || How to resolve common problems&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Change_Log|'''Change Logs''']] || Change Logs for FXLData.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Edge Server Topics ==&lt;br /&gt;
A light-weight high-performance data and metadata REST API server designed to be deployed in clusters in the DMZ or at the network edge for scalable, fault-tolerant public data dissemination use cases.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Server|'''Overview''']] || What is Fusion Edge Server?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FESInstall|'''Installation''']] || How to install Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Environment|'''Environment''']] || Edge Server environment&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Compiler|'''Compiler''']] || Edge Server Compiler&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Data_Preperation_Web_Service|'''Web Services''']] || Data Preparation Web Services &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How_to_FES|'''How to and Other Features''']] || Using Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFES|'''Change Logs''']] || Change Logs for Fusion Edge Server&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Command Line Tools ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Transformer|'''Fusion Transformer''']] || Fusion Transformer is a command-line application providing transformations between SDMX and GESMES data files and structure files.&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Registry_Command_Line|'''Fusion Registry Command Line''']] || Windows and Linux command line interface.&lt;br /&gt;
A command line interface to Fusion Registry's REST API providing utility scripts for loading structures, data and metadata, validating data, exporting content and deleting content.&lt;br /&gt;
|-&lt;br /&gt;
| [[Backup_and_Restore|'''FMRCL''']] || Tool to assist with Backup up and Restoring Structures.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Database Recovery==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Oracle_Schema_backup_on_AWS|'''Oracle Schema Backup and Restore on AWS''']] || Information on possible ways to backup and restore a DB schema using oracle tools  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8201</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Main_Page&amp;diff=8201"/>
		<updated>2026-02-17T09:27:19Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Release Plans */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:&amp;lt;span style=&amp;quot;opacity:0;position:absolute;&amp;quot;&amp;gt;{{FULLPAGENAME}}&amp;lt;/span&amp;gt;}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size:2.0rem;&amp;quot;&amp;gt;Regnology Fusion Statistics Knowledge Base&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
==SDMX Statistical Data Warehouse==&lt;br /&gt;
&lt;br /&gt;
Regnology Fusion Statistics is for central banks, international organisations, national statistics offices, development banks and regional statistics authorities who need an enterprise SDMX statistical data warehouse for storage of aggregated time series, data cataloguing and public dissemination. '''Reade more''' about SDMX here: [https://www.regnology.net/en/resources/regulatory-topics/sdmx/ What is SDMX?].&lt;br /&gt;
&lt;br /&gt;
Click here to see a visual representation of the [[Fusion_Registry_Core_Software_Stack|Fusion Registry Core Software Stack.]] Click here to read more about [[Fusion_Registry_Overview| Key Use Cases.]]&lt;br /&gt;
&lt;br /&gt;
== Release Plans ==&lt;br /&gt;
[https://email.regnology.net/harmonized-release-cycle-nomenclature-for-the-regnology-supervisory-hub-rsh?ecid=&amp;amp;utm_source=hs_email&amp;amp;utm_medium=email&amp;amp;_hsenc=p2ANqtz-8k1x3QloJAxsbKWXoazbn6M6u-uMRLRREeIqMPkgKjwI_utAAuoyTsjykx3n633VJ-vcX4| Important announcement regarding Relace Cycle and Release naming convention.]&lt;br /&gt;
&lt;br /&gt;
[[Release_Plans| Click here to view our future plans for Regnology Fusion Statistics.]]&lt;br /&gt;
.&lt;br /&gt;
&lt;br /&gt;
==What's new?==&lt;br /&gt;
[[What%27s_new|  Click here to access more information on changes implemented in Releases and Hot Fixes from January 2025 onwards.]]&lt;br /&gt;
&lt;br /&gt;
== How to download a new version==&lt;br /&gt;
[[File:How to obtain a Release-aug-2025.pdf | Click here to download instructions on how to uses the delivery software.]]'''&lt;br /&gt;
&lt;br /&gt;
==Open Source Software (OSS) / Third Party Components==&lt;br /&gt;
[[Open_Source_Software_(OSS)_/_Third_Party_Components|Click here for more details.]]&lt;br /&gt;
&lt;br /&gt;
==Components and Modules==&lt;br /&gt;
Regnology Fusion Statistics consists of a number of modules centered on the Fusion Registry core data warehouse engine, including a secure high-performance data dissemination server and a configurable data explorer and analytics tool for data consumers and analysts. &lt;br /&gt;
&lt;br /&gt;
Fusion Registry has an integrated SDMX structural metadata registry that is 100% compatible with Fusion Metadata Registry.&lt;br /&gt;
&lt;br /&gt;
[[File:Modules-Oct23.png|900px]]&lt;br /&gt;
&lt;br /&gt;
==Fusion Registry Topics==&lt;br /&gt;
SDMX statistical data engine and structural metadata registry. The main statistical engine for data collection, integration, processing, storage, query execution and time-series calculations. It provides an SDMX-compliant data and metadata REST API. The integrated SDMX structural metadata registry acts as the central repository, authoring and maintenance tool for all of the structures including Codelists, Concepts and Data Structure Definitions.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Fusion_Registry_Overview|'''Overview''']]|| What is Fusion Registry?&lt;br /&gt;
|-&lt;br /&gt;
| | [[Fusion_Registry_-_Install,_Update_and_Configure |''' Fusion Registry Install, Update and Configure ''']]|| How to install, update  and configure the Registry   &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SDMX Structures|'''SDMX Structures''']]|| Detailed explanations of the main SDMX structural metadata artefacts &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Structural Metadata|'''Structure Maintenance''']]|| How to maintain the SDMX Structures&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Reference_Metadata|'''Reference Metadata''']] || Guidance on working with SDMX 3.0 reference metadata in Fusion Registry 11&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How To|'''How to and other Features''']] || Guidance on specific tasks using Fusion Registry&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:SdmxDataFormat|'''Data Formats''']] || A description of supported Data Formats&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RegistrySecurity|'''Security''']] || Authentication and Authorisation Features&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:WebService|'''Web Services''']] || Registry Web Services&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFR|'''Change Logs''']] || Change Logs for Registry 11 and Registry 10&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:RetiredFunctionality|'''Retired Functionality''']] || Functionality no longer valid in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Portal Topics==&lt;br /&gt;
Fusion Portal is a web application made up of HTML, JavaScript, Images, and CSS files. The Portal allows you to call data from SDMX Webservices and other sources which enables you to obtain data from the data provider and import it directly into Fusion Registry.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion_Portal_Install |'''Installation and Configuration''']]|| How to install and Configure the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Data Portal Functions |'''How to and other Features''']] || Guidance on using Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:CRON-DP |'''Cron''' ]] || Using Cron to schedule regular synchronisations&lt;br /&gt;
|-&lt;br /&gt;
| [[Portal_Web_Services|'''Web Services''']] || List of Web Services specific to the Data Portal&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Portal|'''Change Logs''']] || Change Logs for Fusion Portal&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Security Manager Topics==&lt;br /&gt;
Available in Fusion Registry 11, a user interface which allows authorisation and rules to be created which explicitly permit or deny a security group access to a resource. The default behaviour of is to make everything private. In order to make structures and data public, specific security rules must be defined to grant access.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FSM_Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Security_Manager_(FR_V11) |'''How to and other Features''']] || Guidance on using Fusion Security Manager&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Security_Manager|'''Change Logs''']] || Change Logs for Fusion Security Manager.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Fame Mapper Topics ==&lt;br /&gt;
Web tool for creating and maintaining Fusion Registry FAME to SDMX series mappings.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FFM Install |'''Installation and Configuration''']]|| How to install and Configure Fusion Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Fame_Mapper |'''How to and other Features''']] || Guidance on using Fame Mapper&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Fame_Mapper|'''Change Logs''']] || Change Logs for Fame Mapper&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Data Browser Topics==&lt;br /&gt;
Web tool for data consumers to explore the Fusion Registry data catalogue, create charts and tables, and download data.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Data_Browser |'''Overview ''']]|| What is Fusion Data Browser?&lt;br /&gt;
|-&lt;br /&gt;
| [[A_beginners_guide_to_Fusion_Data_Browser |'''Getting Started''']]|| Non-technical guide for using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Anatomy_of_the_Data_Browser |'''Anatomy of the Data Browser''']]|| Technical guide detailing techniques and solutions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FDB Install and Configure |'''Installation and Configuration''']]|| How to install and Configure the Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Data Browser |'''How to and Functions''']] || Using Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[Change_Log_Fusion_Data_Browser|'''Change Logs''']] || Change Logs for Fusion Data Browser&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Fusion Registry Data Browser|'''Retired Functionality''']] || Functionality no longer available in V11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FusionXL Topics==&lt;br /&gt;
FusionXL is an addin for Microsoft Excel which connects to a Fusion Registry server for both data and structure retrieval, and maintenance.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Install|'''Installation''']] || How to Install Fusion XL and connect to a Fusion Registry server&lt;br /&gt;
|-&lt;br /&gt;
| [[Security in FXL |'''Security in FXL''']] || How to set up rules to apply to FusionXL from Version 11&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataBAuthor|'''Data Author''']] || Create datasets and load datasets for the purpose of data authoring, validation, conversion, and publishing&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_StructureExplorer|'''Structure Explorer''']] || Create, Retrieve and Modify Structures using the Excel Ribbon&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_Change_Log|'''Change Logs''']] || Change Logs for FusionXL&lt;br /&gt;
|-&lt;br /&gt;
| [[FusionXL_DataExplorer|'''Retired Functionality''']] || Functionality no longer available in V3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==FXLData Topics==&lt;br /&gt;
FusionXLData is an addin for Microsoft Excel which connects to a Fusion Registry server for exploring the data catalogue, and downloading data directly into a spreadsheet.&lt;br /&gt;
&lt;br /&gt;
'''In August 2025''' a major upgrade has taken place, click her to read [[FXLData_what%27s_new_in_R1.3%3F|about the changes and new features]]&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Overview_FXLData|'''Overview''']] || What is FXLData?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Getting_Started_FXLData|'''Getting Started''']] || How to download, install and configure FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:Functions Reference FXLData|'''Functions Reference''']] || How to use the Parameter functions in FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Wizard|'''Data Wizard''']] || using the ribbon tool to build and edit functions&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How to and other features in FXLData | '''How to and other features''']] || How to use FXLData&lt;br /&gt;
|-&lt;br /&gt;
| [[Troubleshooting_-_FXLData|'''Troubleshooting''']] || How to resolve common problems&lt;br /&gt;
|-&lt;br /&gt;
| [[FXLData_Change_Log|'''Change Logs''']] || Change Logs for FXLData.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fusion Edge Server Topics ==&lt;br /&gt;
A light-weight high-performance data and metadata REST API server designed to be deployed in clusters in the DMZ or at the network edge for scalable, fault-tolerant public data dissemination use cases.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Server|'''Overview''']] || What is Fusion Edge Server?&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:FESInstall|'''Installation''']] || How to install Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Environment|'''Environment''']] || Edge Server environment&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Edge_Compiler|'''Compiler''']] || Edge Server Compiler&lt;br /&gt;
|-&lt;br /&gt;
| [[Edge_Server_Data_Preperation_Web_Service|'''Web Services''']] || Data Preparation Web Services &lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:How_to_FES|'''How to and Other Features''']] || Using Fusion Edge Server&lt;br /&gt;
|-&lt;br /&gt;
| [[:Category:ChangeLogFES|'''Change Logs''']] || Change Logs for Fusion Edge Server&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Command Line Tools ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Transformer|'''Fusion Transformer''']] || Fusion Transformer is a command-line application providing transformations between SDMX and GESMES data files and structure files.&lt;br /&gt;
|-&lt;br /&gt;
| [[Fusion_Registry_Command_Line|'''Fusion Registry Command Line''']] || Windows and Linux command line interface.&lt;br /&gt;
A command line interface to Fusion Registry's REST API providing utility scripts for loading structures, data and metadata, validating data, exporting content and deleting content.&lt;br /&gt;
|-&lt;br /&gt;
| [[Backup_and_Restore|'''FMRCL''']] || Tool to assist with Backup up and Restoring Structures.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
==Database Recovery==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[Oracle_Schema_backup_on_AWS|'''Oracle Schema Backup and Restore on AWS''']] || Information on possible ways to backup and restore a DB schema using oracle tools  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8200</id>
		<title>What's new in R26.2.0.00 RSH-FS 28.05.26</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8200"/>
		<updated>2026-02-16T12:44:04Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Extended Authentication Capabilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Extended Authentication Capabilities==&lt;br /&gt;
&lt;br /&gt;
This option allows a user to Login to FXLData before they are actually required to do so. In the past the Login box would appear as an when it was required which could interrupt the users workflow.&lt;br /&gt;
&lt;br /&gt;
To use the feature, select Login from the FXLData Ribbon Bar.&lt;br /&gt;
&lt;br /&gt;
[[File:Sel-login-options.png|600px]]&lt;br /&gt;
&lt;br /&gt;
First, select the registry that you wish to access as shown in the example below.&lt;br /&gt;
&lt;br /&gt;
[[File:Login-8080.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Click Login, the Excel login box will appear, enter your credentials in the usual way.&lt;br /&gt;
&lt;br /&gt;
Successful authentication will be confirmed as shown in the image below.&lt;br /&gt;
&lt;br /&gt;
[[File:Login-success.png|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting ===&lt;br /&gt;
* Scenario 1:&lt;br /&gt;
You select a registry and click Login, but the feedback box says:“You are logged into {registryUrl} as {userId}.”&lt;br /&gt;
This indicates that you are already authenticated with the selected registry.&lt;br /&gt;
If you need to log in as a different user, you will have to restart Excel.&lt;br /&gt;
Switching accounts within the same Excel session is not supported in the first phase of this feature.&lt;br /&gt;
&lt;br /&gt;
* Scenario 2:&lt;br /&gt;
 &lt;br /&gt;
You click Login, but no login prompt appears and the feedback box says: “Login Failed.”&lt;br /&gt;
In this case, the most likely cause is an authentication configuration issue within the registry.&lt;br /&gt;
To resolve this, please contact your registry administrator or raise a ticket with Regnology for assistance&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8199</id>
		<title>What's new in R26.2.0.00 RSH-FS 28.05.26</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8199"/>
		<updated>2026-02-16T12:31:18Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Extended Authentication Capabilities==&lt;br /&gt;
&lt;br /&gt;
This option allows a user to Login to FXLData before they are actually required to do so. In the past the Login box would appear as an when it was required which could interrupt the users workflow.&lt;br /&gt;
&lt;br /&gt;
To use the feature, select Login from the FXLData Tool Bar.&lt;br /&gt;
&lt;br /&gt;
[[File:Sel-login-options.png|600px]]&lt;br /&gt;
&lt;br /&gt;
First, select the registry that you wish to access as shown in the example below.&lt;br /&gt;
&lt;br /&gt;
[[File:Login-8080.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Click Login, the Excel login box will appear, enter your credentials in the usual way.&lt;br /&gt;
&lt;br /&gt;
Successful authentication will be confirmed as shown in the image below.&lt;br /&gt;
&lt;br /&gt;
[[File:Login-success.png|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting ===&lt;br /&gt;
* Scenario 1:&lt;br /&gt;
You select a registry and click Login, but the feedback box says:“You are logged into {registryUrl} as {userId}.”&lt;br /&gt;
This indicates that you are already authenticated with the selected registry.&lt;br /&gt;
If you need to log in as a different user, you will have to restart Excel.&lt;br /&gt;
Switching accounts within the same Excel session is not supported in the first phase of this feature.&lt;br /&gt;
&lt;br /&gt;
* Scenario 2:&lt;br /&gt;
 &lt;br /&gt;
You click Login, but no login prompt appears and the feedback box says: “Login Failed.”&lt;br /&gt;
In this case, the most likely cause is an authentication configuration issue within the registry.&lt;br /&gt;
To resolve this, please contact your registry administrator or raise a ticket with Regnology for assistance&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:Login-success.png&amp;diff=8198</id>
		<title>File:Login-success.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:Login-success.png&amp;diff=8198"/>
		<updated>2026-02-16T12:28:47Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:Login-8080.png&amp;diff=8197</id>
		<title>File:Login-8080.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:Login-8080.png&amp;diff=8197"/>
		<updated>2026-02-16T12:26:47Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:Sel-login-options.png&amp;diff=8196</id>
		<title>File:Sel-login-options.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:Sel-login-options.png&amp;diff=8196"/>
		<updated>2026-02-16T12:24:03Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8195</id>
		<title>FXLData what's new in R1.3.03</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8195"/>
		<updated>2026-02-16T12:19:44Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
Since the last main release of FXL Data in July 2024, a number of changes and enhancements have been introduced. The changes address several issues identified by users including, to stablise the product, removing the difference between using the Legacy Mode features (these catered for users who used Microsoft Excel 2010-2019) and those using subsequent versions i.e., MS Office 365 and incorporating a number of great new features.&lt;br /&gt;
&lt;br /&gt;
Some of these changes were made available via an optional Hot fixes but the Release of R1.3 brings all the changes together and includes a useful new feature as well as various bug fixes.&lt;br /&gt;
&lt;br /&gt;
A summary of all the changes can be viewed in the Change Log [[FXLData_Change_Log | Change Log]] which shows which changes were made in which Hotfix and which are new in R1.3. This page summarises all the main changes as at Version 1.3.&lt;br /&gt;
&lt;br /&gt;
Remember - to use these changes the FXLData add-in must be installed, follow the installation instructions found [[Downlad_and_Installation_FXLData |here.]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Tab ==&lt;br /&gt;
On opening Excel and enabling the latest version of the FX Data add-in, you will see several significant changes on the FXLData Tab within Excel.&lt;br /&gt;
&lt;br /&gt;
[[File:Appearance.png|800px]]&lt;br /&gt;
&lt;br /&gt;
=== [[Legacy Mode - FXLData |Legacy Mode]] ===&lt;br /&gt;
The need for Legacy mode has been superseded by the removal of the Automatic Calculation facility. The Refresh button now works as expected and will perform an update on request.&lt;br /&gt;
&lt;br /&gt;
As part of the change you will notice that the ampersand is inserted into the query shown in the formula bar.&lt;br /&gt;
&lt;br /&gt;
'''Example:''' &lt;br /&gt;
 @FXLData(&amp;quot;https://demo.metadatatechnology.com/FusionRegistry&amp;quot;,&amp;quot;WB,WDI_POVERTY,1.0&amp;quot;,&amp;quot;.SI_DST_02ND_20+SI_DST_03RD_20+SI_DST_04TH_20.&amp;quot;,100,,,,&amp;quot;id&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as described here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;br /&gt;
&lt;br /&gt;
=== Diagnostic Tool ===&lt;br /&gt;
This feature has been introduced to help Regnology diagnose any issues encountered when using FXL Data. By default, the feature is switched off. When required, two options are available which supply different levels of detail. When the tool is enabled a log file will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:Diagnostic tool.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Wizard ==&lt;br /&gt;
&lt;br /&gt;
===Dataflow Selection===&lt;br /&gt;
&lt;br /&gt;
A new selection box has been added to make it easier to select a dataflow.&lt;br /&gt;
&lt;br /&gt;
[[File:Dataflow selection.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Selecting Items===&lt;br /&gt;
[[File:Codelist display.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Rest Arguments===&lt;br /&gt;
&lt;br /&gt;
The Wizard (available from the FXL Data tab) now includes a button to select the Rest Arguments Builder. Which can be used to specify additional SDMX query arguments that are not available through other options in the User Interface, such as round=2 for rounding numeric values. It is intended for the advanced user who needs finer control over the query behaviour.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder-button.png|1000-px]]&lt;br /&gt;
&lt;br /&gt;
To use the Builder, select a dataflow and then click on the Builder button.&lt;br /&gt;
&lt;br /&gt;
Click the button to access the builder.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Apply Button'''&lt;br /&gt;
&lt;br /&gt;
When the Apply button is pressed in the REST Arguments Builder, it performs the following action:&lt;br /&gt;
&lt;br /&gt;
* It populates the REST Args box on the main Wizard screen with the constructed query string based on the enabled and valid arguments.&lt;br /&gt;
* It does not execute the FXLData function or retrieve any data at this stage.&lt;br /&gt;
* To actually run the query and fetch data into Excel, the user must return to the Wizard screen and press its Apply button.&lt;br /&gt;
This separation ensures the user can review and finalize their full query setup before triggering data retrieval.&lt;br /&gt;
&lt;br /&gt;
====Interaction with the Wizard====&lt;br /&gt;
'''Existing Arguments'''&lt;br /&gt;
&lt;br /&gt;
If the wizard already contains rest arguments when the Builder is opened, it will attempt to interpret and reconstruct the existing argument as accurately as possible.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-arguments-box.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Arguments handled via the Wizard'''&lt;br /&gt;
&lt;br /&gt;
* startperiod  &lt;br /&gt;
* endperiod  &lt;br /&gt;
* max &lt;br /&gt;
* time-format-frequency-id&lt;br /&gt;
&lt;br /&gt;
=== Other point to note ===&lt;br /&gt;
==== Functions ====&lt;br /&gt;
The TimeFormatFrequencyID parameter is now available when using the Functions:&lt;br /&gt;
* FXLDataURL&lt;br /&gt;
* FXLDataURLV&lt;br /&gt;
* FXLDataURLFact&lt;br /&gt;
&lt;br /&gt;
[[File:TimeFormatFrequencyID.png|500px]]&lt;br /&gt;
&lt;br /&gt;
===== New Functions introduced =====&lt;br /&gt;
&lt;br /&gt;
These options are available but are currently in beta test. &lt;br /&gt;
&lt;br /&gt;
[[FXLDataLookup_and_FXLDataPeriod_Functions |You can read more in this article.]]&lt;br /&gt;
&lt;br /&gt;
===== System Properties =====&lt;br /&gt;
A new option is available on the FXL Data tab which, when selected, will display information as shown in the example aside.&lt;br /&gt;
&lt;br /&gt;
[[File:Click-sys-info-ER.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as describe here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=File:Click-sys-info-ER.png&amp;diff=8194</id>
		<title>File:Click-sys-info-ER.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=File:Click-sys-info-ER.png&amp;diff=8194"/>
		<updated>2026-02-16T12:17:34Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8193</id>
		<title>What's new in R26.2.0.00 RSH-FS 28.05.26</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=What%27s_new_in_R26.2.0.00_RSH-FS_28.05.26&amp;diff=8193"/>
		<updated>2026-02-16T12:07:50Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Created page with &amp;quot;Category:How to and other features in FXLData Coming soon.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
Coming soon.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8192</id>
		<title>FXLData what's new in R1.3.03</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8192"/>
		<updated>2026-02-16T12:01:29Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
Since the last main release of FXL Data in July 2024, a number of changes and enhancements have been introduced. The changes address several issues identified by users including, to stablise the product, removing the difference between using the Legacy Mode features (these catered for users who used Microsoft Excel 2010-2019) and those using subsequent versions i.e., MS Office 365 and incorporating a number of great new features.&lt;br /&gt;
&lt;br /&gt;
Some of these changes were made available via an optional Hot fixes but the Release of R1.3 brings all the changes together and includes a useful new feature as well as various bug fixes.&lt;br /&gt;
&lt;br /&gt;
A summary of all the changes can be viewed in the Change Log [[FXLData_Change_Log | Change Log]] which shows which changes were made in which Hotfix and which are new in R1.3. This page summarises all the main changes as at Version 1.3.&lt;br /&gt;
&lt;br /&gt;
Remember - to use these changes the FXLData add-in must be installed, follow the installation instructions found [[Downlad_and_Installation_FXLData |here.]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Tab ==&lt;br /&gt;
On opening Excel and enabling the latest version of the FX Data add-in, you will see several significant changes on the FXLData Tab within Excel.&lt;br /&gt;
&lt;br /&gt;
[[File:Appearance.png|800px]]&lt;br /&gt;
&lt;br /&gt;
=== [[Legacy Mode - FXLData |Legacy Mode]] ===&lt;br /&gt;
The need for Legacy mode has been superseded by the removal of the Automatic Calculation facility. The Refresh button now works as expected and will perform an update on request.&lt;br /&gt;
&lt;br /&gt;
As part of the change you will notice that the ampersand is inserted into the query shown in the formula bar.&lt;br /&gt;
&lt;br /&gt;
'''Example:''' &lt;br /&gt;
 @FXLData(&amp;quot;https://demo.metadatatechnology.com/FusionRegistry&amp;quot;,&amp;quot;WB,WDI_POVERTY,1.0&amp;quot;,&amp;quot;.SI_DST_02ND_20+SI_DST_03RD_20+SI_DST_04TH_20.&amp;quot;,100,,,,&amp;quot;id&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as described here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;br /&gt;
&lt;br /&gt;
=== Diagnostic Tool ===&lt;br /&gt;
This feature has been introduced to help Regnology diagnose any issues encountered when using FXL Data. By default, the feature is switched off. When required, two options are available which supply different levels of detail. When the tool is enabled a log file will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:Diagnostic tool.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Wizard ==&lt;br /&gt;
&lt;br /&gt;
===Dataflow Selection===&lt;br /&gt;
&lt;br /&gt;
A new selection box has been added to make it easier to select a dataflow.&lt;br /&gt;
&lt;br /&gt;
[[File:Dataflow selection.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Selecting Items===&lt;br /&gt;
[[File:Codelist display.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Rest Arguments===&lt;br /&gt;
&lt;br /&gt;
The Wizard (available from the FXL Data tab) now includes a button to select the Rest Arguments Builder. Which can be used to specify additional SDMX query arguments that are not available through other options in the User Interface, such as round=2 for rounding numeric values. It is intended for the advanced user who needs finer control over the query behaviour.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder-button.png|1000-px]]&lt;br /&gt;
&lt;br /&gt;
To use the Builder, select a dataflow and then click on the Builder button.&lt;br /&gt;
&lt;br /&gt;
Click the button to access the builder.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Apply Button'''&lt;br /&gt;
&lt;br /&gt;
When the Apply button is pressed in the REST Arguments Builder, it performs the following action:&lt;br /&gt;
&lt;br /&gt;
* It populates the REST Args box on the main Wizard screen with the constructed query string based on the enabled and valid arguments.&lt;br /&gt;
* It does not execute the FXLData function or retrieve any data at this stage.&lt;br /&gt;
* To actually run the query and fetch data into Excel, the user must return to the Wizard screen and press its Apply button.&lt;br /&gt;
This separation ensures the user can review and finalize their full query setup before triggering data retrieval.&lt;br /&gt;
&lt;br /&gt;
====Interaction with the Wizard====&lt;br /&gt;
'''Existing Arguments'''&lt;br /&gt;
&lt;br /&gt;
If the wizard already contains rest arguments when the Builder is opened, it will attempt to interpret and reconstruct the existing argument as accurately as possible.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-arguments-box.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Arguments handled via the Wizard'''&lt;br /&gt;
&lt;br /&gt;
* startperiod  &lt;br /&gt;
* endperiod  &lt;br /&gt;
* max &lt;br /&gt;
* time-format-frequency-id&lt;br /&gt;
&lt;br /&gt;
=== Other point to note ===&lt;br /&gt;
==== Functions ====&lt;br /&gt;
The TimeFormatFrequencyID parameter is now available when using the Functions:&lt;br /&gt;
* FXLDataURL&lt;br /&gt;
* FXLDataURLV&lt;br /&gt;
* FXLDataURLFact&lt;br /&gt;
&lt;br /&gt;
[[File:TimeFormatFrequencyID.png|500px]]&lt;br /&gt;
&lt;br /&gt;
===== New Functions introduced =====&lt;br /&gt;
&lt;br /&gt;
These options are available but are currently in beta test. &lt;br /&gt;
&lt;br /&gt;
[[FXLDataLookup_and_FXLDataPeriod_Functions |You can read more in this article.]]&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as describe here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8190</id>
		<title>FXLData what's new in R1.3.03</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8190"/>
		<updated>2026-02-16T11:57:34Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Vmurrell moved page FXLData what's new in R1.3.3 to FXLData what's new in R1.3.03&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
Since the last main release of FXL Data in July 2024, a number of changes and enhancements have been introduced. The changes address several issues identified by users including, to stablise the product, removing the difference between using the Legacy Mode features (these catered for users who used Microsoft Excel 2010-2019) and those using subsequent versions i.e., MS Office 365 and incorporating a number of great new features.&lt;br /&gt;
&lt;br /&gt;
Some of these changes were made available via an optional Hot fixes but the Release of R1.3 brings all the changes together and includes a useful new feature as well as various bug fixes.&lt;br /&gt;
&lt;br /&gt;
A summary of all the changes can be viewed in the Change Log [[FXLData_Change_Log | Change Log]] which shows which changes were made in which Hotfix and which are new in R1.3. This page summarises all the main changes as at Version 1.3.&lt;br /&gt;
&lt;br /&gt;
Remember - to use these changes the FXLData add-in must be installed, follow the installation instructions found [[Downlad_and_Installation_FXLData |here.]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Tab ==&lt;br /&gt;
On opening Excel and enabling the latest version of the FX Data add-in, you will see several significant changes on the FXLData Tab within Excel.&lt;br /&gt;
&lt;br /&gt;
[[File:Appearance.png|800px]]&lt;br /&gt;
&lt;br /&gt;
=== [[Legacy Mode - FXLData |Legacy Mode]] ===&lt;br /&gt;
The need for Legacy mode has been superseded by the removal of the Automatic Calculation facility. The Refresh button now works as expected and will perform an update on request.&lt;br /&gt;
&lt;br /&gt;
As part of the change you will notice that the ampersand is inserted into the query shown in the formula bar.&lt;br /&gt;
&lt;br /&gt;
'''Example:''' &lt;br /&gt;
 @FXLData(&amp;quot;https://demo.metadatatechnology.com/FusionRegistry&amp;quot;,&amp;quot;WB,WDI_POVERTY,1.0&amp;quot;,&amp;quot;.SI_DST_02ND_20+SI_DST_03RD_20+SI_DST_04TH_20.&amp;quot;,100,,,,&amp;quot;id&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as described here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;br /&gt;
&lt;br /&gt;
=== Diagnostic Tool ===&lt;br /&gt;
This feature has been introduced to help Regnology diagnose any issues encountered when using FXL Data. By default, the feature is switched off. When required, two options are available which supply different levels of detail. When the tool is enabled a log file will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:Diagnostic tool.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Wizard ==&lt;br /&gt;
&lt;br /&gt;
===Dataflow Selection===&lt;br /&gt;
&lt;br /&gt;
A new selection box has been added to make it easier to select a dataflow.&lt;br /&gt;
&lt;br /&gt;
[[File:Dataflow selection.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Selecting Items===&lt;br /&gt;
[[File:Codelist display.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Rest Arguments===&lt;br /&gt;
&lt;br /&gt;
The Wizard (available from the FXL Data tab) now includes a button to select the Rest Arguments Builder. Which can be used to specify additional SDMX query arguments that are not available through other options in the User Interface, such as round=2 for rounding numeric values. It is intended for the advanced user who needs finer control over the query behaviour.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder-button.png|1000-px]]&lt;br /&gt;
&lt;br /&gt;
To use the Builder, select a dataflow and then click on the Builder button.&lt;br /&gt;
&lt;br /&gt;
Click the button to access the builder.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Apply Button'''&lt;br /&gt;
&lt;br /&gt;
When the Apply button is pressed in the REST Arguments Builder, it performs the following action:&lt;br /&gt;
&lt;br /&gt;
* It populates the REST Args box on the main Wizard screen with the constructed query string based on the enabled and valid arguments.&lt;br /&gt;
* It does not execute the FXLData function or retrieve any data at this stage.&lt;br /&gt;
* To actually run the query and fetch data into Excel, the user must return to the Wizard screen and press its Apply button.&lt;br /&gt;
This separation ensures the user can review and finalize their full query setup before triggering data retrieval.&lt;br /&gt;
&lt;br /&gt;
====Interaction with the Wizard====&lt;br /&gt;
'''Existing Arguments'''&lt;br /&gt;
&lt;br /&gt;
If the wizard already contains rest arguments when the Builder is opened, it will attempt to interpret and reconstruct the existing argument as accurately as possible.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-arguments-box.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Arguments handled via the Wizard'''&lt;br /&gt;
&lt;br /&gt;
* startperiod  &lt;br /&gt;
* endperiod  &lt;br /&gt;
* max &lt;br /&gt;
* time-format-frequency-id&lt;br /&gt;
&lt;br /&gt;
=== Other point to note ===&lt;br /&gt;
==== Functions ====&lt;br /&gt;
The TimeFormatFrequencyID parameter is now available when using the Functions:&lt;br /&gt;
* FXLDataURL&lt;br /&gt;
* FXLDataURLV&lt;br /&gt;
* FXLDataURLFact&lt;br /&gt;
&lt;br /&gt;
[[File:TimeFormatFrequencyID.png|500px]]&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as describe here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.3&amp;diff=8191</id>
		<title>FXLData what's new in R1.3.3</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.3&amp;diff=8191"/>
		<updated>2026-02-16T11:57:34Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Vmurrell moved page FXLData what's new in R1.3.3 to FXLData what's new in R1.3.03&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[FXLData what's new in R1.3.03]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8188</id>
		<title>FXLData what's new in R1.3.03</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3.03&amp;diff=8188"/>
		<updated>2026-02-16T11:57:12Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Vmurrell moved page FXLData what's new in R1.3? to FXLData what's new in R1.3.3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:How to and other features in FXLData]]&lt;br /&gt;
Since the last main release of FXL Data in July 2024, a number of changes and enhancements have been introduced. The changes address several issues identified by users including, to stablise the product, removing the difference between using the Legacy Mode features (these catered for users who used Microsoft Excel 2010-2019) and those using subsequent versions i.e., MS Office 365 and incorporating a number of great new features.&lt;br /&gt;
&lt;br /&gt;
Some of these changes were made available via an optional Hot fixes but the Release of R1.3 brings all the changes together and includes a useful new feature as well as various bug fixes.&lt;br /&gt;
&lt;br /&gt;
A summary of all the changes can be viewed in the Change Log [[FXLData_Change_Log | Change Log]] which shows which changes were made in which Hotfix and which are new in R1.3. This page summarises all the main changes as at Version 1.3.&lt;br /&gt;
&lt;br /&gt;
Remember - to use these changes the FXLData add-in must be installed, follow the installation instructions found [[Downlad_and_Installation_FXLData |here.]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Tab ==&lt;br /&gt;
On opening Excel and enabling the latest version of the FX Data add-in, you will see several significant changes on the FXLData Tab within Excel.&lt;br /&gt;
&lt;br /&gt;
[[File:Appearance.png|800px]]&lt;br /&gt;
&lt;br /&gt;
=== [[Legacy Mode - FXLData |Legacy Mode]] ===&lt;br /&gt;
The need for Legacy mode has been superseded by the removal of the Automatic Calculation facility. The Refresh button now works as expected and will perform an update on request.&lt;br /&gt;
&lt;br /&gt;
As part of the change you will notice that the ampersand is inserted into the query shown in the formula bar.&lt;br /&gt;
&lt;br /&gt;
'''Example:''' &lt;br /&gt;
 @FXLData(&amp;quot;https://demo.metadatatechnology.com/FusionRegistry&amp;quot;,&amp;quot;WB,WDI_POVERTY,1.0&amp;quot;,&amp;quot;.SI_DST_02ND_20+SI_DST_03RD_20+SI_DST_04TH_20.&amp;quot;,100,,,,&amp;quot;id&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;TRUE&amp;quot;,&amp;quot;FALSE&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as described here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;br /&gt;
&lt;br /&gt;
=== Diagnostic Tool ===&lt;br /&gt;
This feature has been introduced to help Regnology diagnose any issues encountered when using FXL Data. By default, the feature is switched off. When required, two options are available which supply different levels of detail. When the tool is enabled a log file will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:Diagnostic tool.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
== FXLData Wizard ==&lt;br /&gt;
&lt;br /&gt;
===Dataflow Selection===&lt;br /&gt;
&lt;br /&gt;
A new selection box has been added to make it easier to select a dataflow.&lt;br /&gt;
&lt;br /&gt;
[[File:Dataflow selection.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Selecting Items===&lt;br /&gt;
[[File:Codelist display.png|1000px]]&lt;br /&gt;
&lt;br /&gt;
===Rest Arguments===&lt;br /&gt;
&lt;br /&gt;
The Wizard (available from the FXL Data tab) now includes a button to select the Rest Arguments Builder. Which can be used to specify additional SDMX query arguments that are not available through other options in the User Interface, such as round=2 for rounding numeric values. It is intended for the advanced user who needs finer control over the query behaviour.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder-button.png|1000-px]]&lt;br /&gt;
&lt;br /&gt;
To use the Builder, select a dataflow and then click on the Builder button.&lt;br /&gt;
&lt;br /&gt;
Click the button to access the builder.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-argument-builder.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Apply Button'''&lt;br /&gt;
&lt;br /&gt;
When the Apply button is pressed in the REST Arguments Builder, it performs the following action:&lt;br /&gt;
&lt;br /&gt;
* It populates the REST Args box on the main Wizard screen with the constructed query string based on the enabled and valid arguments.&lt;br /&gt;
* It does not execute the FXLData function or retrieve any data at this stage.&lt;br /&gt;
* To actually run the query and fetch data into Excel, the user must return to the Wizard screen and press its Apply button.&lt;br /&gt;
This separation ensures the user can review and finalize their full query setup before triggering data retrieval.&lt;br /&gt;
&lt;br /&gt;
====Interaction with the Wizard====&lt;br /&gt;
'''Existing Arguments'''&lt;br /&gt;
&lt;br /&gt;
If the wizard already contains rest arguments when the Builder is opened, it will attempt to interpret and reconstruct the existing argument as accurately as possible.&lt;br /&gt;
&lt;br /&gt;
[[File:Rest-arguments-box.png|1200-px]]&lt;br /&gt;
&lt;br /&gt;
'''Arguments handled via the Wizard'''&lt;br /&gt;
&lt;br /&gt;
* startperiod  &lt;br /&gt;
* endperiod  &lt;br /&gt;
* max &lt;br /&gt;
* time-format-frequency-id&lt;br /&gt;
&lt;br /&gt;
=== Other point to note ===&lt;br /&gt;
==== Functions ====&lt;br /&gt;
The TimeFormatFrequencyID parameter is now available when using the Functions:&lt;br /&gt;
* FXLDataURL&lt;br /&gt;
* FXLDataURLV&lt;br /&gt;
* FXLDataURLFact&lt;br /&gt;
&lt;br /&gt;
[[File:TimeFormatFrequencyID.png|500px]]&lt;br /&gt;
&lt;br /&gt;
=== Refresh ===&lt;br /&gt;
FXLData no longer uses the normal Excel calculations in Microsoft 365. As a result, if a change is made as describe here [[Refresh - FXLData#Refresh| Refresh article]] a manual refresh is necessary.&lt;br /&gt;
&lt;br /&gt;
The Refresh option is no longer restricted to older versions of Excel, the options available are detailed [[Refresh - FXLData#Office 2010-2019 Excel and Microsoft 365 Excel working in legacy Mode|here.]]&lt;br /&gt;
&lt;br /&gt;
Note that if the formula itself is deleted, you will also need to delete any returned data.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3%3F&amp;diff=8189</id>
		<title>FXLData what's new in R1.3?</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=FXLData_what%27s_new_in_R1.3%3F&amp;diff=8189"/>
		<updated>2026-02-16T11:57:12Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: Vmurrell moved page FXLData what's new in R1.3? to FXLData what's new in R1.3.3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[FXLData what's new in R1.3.3]]&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Change_Log_FR_-_V11_and_subsequent_releases&amp;diff=8187</id>
		<title>Change Log FR - V11 and subsequent releases</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Change_Log_FR_-_V11_and_subsequent_releases&amp;diff=8187"/>
		<updated>2026-02-12T13:19:32Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* Version 11.4.3 (Released: 2022/09/13) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Fusion Registry Change Logs]]&lt;br /&gt;
[[Category:ChangeLogFR]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.02_RFS_10.10.25 - Released on December 12, 2025 =&lt;br /&gt;
RFS-1901 - Improvement - Performance improvements when computing complex aggregates for big data sets&lt;br /&gt;
&lt;br /&gt;
= H1.3.0.01_RFS_10.10.25 - Released on October 9, 2025 =&lt;br /&gt;
RFS-1722 - Enhancement - Performance improvements to generation of temporary (MVS) files.&lt;br /&gt;
&lt;br /&gt;
= R1.3.0.00_RFS_29.08.25 - Released on August 29, 2025 =&lt;br /&gt;
RFS-1516 - Enhancement - Publication Table Editor allows the user to add only 150 rows in order to ensure performance. The limit has been increased to 350&lt;br /&gt;
&lt;br /&gt;
RFS-1523 - Bug Fix - Publication Tables - content within a loop did not iterate through the full range of defined dimensions. This issue has been fixed.&lt;br /&gt;
&lt;br /&gt;
RFS-1461 - Bug Fix - Where an Oracle database was in use, it was possible to have duplicate email subscriptions stored causing multiple email notifications. This has been resolved by converting all email addresses to lower case with duplicates not allowed.&lt;br /&gt;
&lt;br /&gt;
RFS-1443 - Bug Fix - In Publication Tables, added footnotes sometimes appeared in the middle of the table when exporting the table in Excel format. A bug was fixed that was causing footnotes to be written to the middle of the table in Publication Tables when exported in Excel format.&lt;br /&gt;
&lt;br /&gt;
RFS-1439 - Bug Fix - Remove Footnote Note button in Publication tables was not operational.&lt;br /&gt;
&lt;br /&gt;
RFS-1380 - Bug Fix - Temporary .mvs file were not always being deleted resulting in unnecessary disk usage. Changes have been made to improve the handling of .mvs and other temporary files to ensure they are deleted as appropriate.&lt;br /&gt;
&lt;br /&gt;
RFS-1378 - Bug Fix - Issue with operations on the Input Stream throwing an NPE. This issue has been resolved.&lt;br /&gt;
&lt;br /&gt;
RFS-1326 - Bug Fix - It was observed that there was inconsistent structure rendering taking place on some API responses from Fusion Registry after the cache had been cleared from the registry.  A targeted fix for this issue at the point of cache clearing was applied.&lt;br /&gt;
&lt;br /&gt;
RFS-1284 - Bug Fix - Delete Language button not working in Codelists. Issue resolved.&lt;br /&gt;
&lt;br /&gt;
RFS-1278 - Bug Fix - Email notifications feature sends emails with 'null' in the subject and email content. The system now uses the name 'Fusion Registry' when this is not set. &lt;br /&gt;
&lt;br /&gt;
RFS-1258 - Bug Fix - Fresh install of the Registry, install page is headed with &amp;quot;Fusion Registry 11 - Install&amp;quot; making this out of date with the current product name and version. The heading on the install pages on a fresh install of the Registry now reads &amp;quot;Fusion Registry&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
RFS-1256 Fusion Registry V10.9.11 - Bug Fix -  Two email notifications for structure submission and structure deletion events were issued and emails in different casings were also creating two subscriptions with the same email in different casings. The system has been modified so only one notification is sent per structure submission or structure deletion event.&lt;br /&gt;
&lt;br /&gt;
RFS-1189 - Bug Fix - Data Formats - Inconsistent behaviour in formats that do not support multiple measures. Standard messaging implemented.&lt;br /&gt;
&lt;br /&gt;
RFS-1182 - Bug Fix - If a large number of Provision Agreements existed, the Home Page was slow to load. Changes were made to the way the Home Page loads which has significantly improved performance.&lt;br /&gt;
&lt;br /&gt;
= H1.2.0.03_RFS_12.03.25 (Released March 12, 2025) =&lt;br /&gt;
RFS-1443 - Enhancement - Issue with the placement of footnotes within Publication Tables. Support Ticket 415617.&lt;br /&gt;
&lt;br /&gt;
RFS-1054 - Enhancement - Change requested to the Fusion CSV Flat data format. A new CSV data format was added. It can be referenced by adding format=csv-bis as a query parameter to the data query URL. The new format orders data by time period (i.e. 2020, 2020M1, 2020Q2, 2021, 2021Q2, 2021M2) and also permanently adds the series short code as a column (e.g. CHN:BT:EX).&lt;br /&gt;
&lt;br /&gt;
= H1.2.0.01_RFS_20.02.25 (Released February 20, 2025) =&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
RFS-1378 - Bug Fix - Previously, an error could occur which caused an NPE. This has been addressed. Support Ticket - 411382.&lt;br /&gt;
&lt;br /&gt;
RFS-1326 - Bug Fix - Previously, it was observed that there was inconsistent structure rendering taking place on some API responses from Fusion Registry after the cache had been cleared.  A targeted fix for this issue at the point of cache clearing was applied.&lt;br /&gt;
&lt;br /&gt;
RFS-1182 - Bug Fix -  Previously, if a large number of Provision Agreements existed, the Home Page was slow to load. This has been addressed. Support Ticket - 355829 &amp;amp; 404512.&lt;br /&gt;
&lt;br /&gt;
= R1.1.2.00_RFS_31.01.25 (Released January 31, 2025) =&lt;br /&gt;
== Changes ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Jira Ticket !! Type !! Description !! Solution&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1044 || Enhancement|| Previously, Fusion Data Store would throw an exception when attempting to append new measures to existing observations, which was inconsistent with SQL data sources that support such appends. || Added the ability to append new measures to existing observations within the Fusion Data Store.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1211 || Enhancement || Update the default data formats from 2.1 to 3.0. || The default data format has been updated from *SDMX-Compact-2.1* to {*}SDMX-Compact-3.0{*}, which introduces support for multi-measures. The previous format is still available and can be accessed via the web service dropdown or by specifying the {{&amp;quot;format&amp;quot;}} parameter in the URL. The Quick Convert feature is still using SDMX-Compact-2.1 format, and will be changed according to the changes in open-source in the future.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-1233 || Bug Fix || Display issues found on Chrome || Change required following Chromium update release in November 2024. [https://wiki.sdmxcloud.org/Data_Structure_issue_November_2024 more information here.]&lt;br /&gt;
|-&lt;br /&gt;
| RFS-682 || Change|| Issue with Validation schemes and OBS_VALUE data type setting. || Numeric values formatting changed to plain string, as validation was not correctly interpreting scientific notation.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-705 || Change || Out of date branding in the Info area.|| Regnology branding now displayed in the Info area.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-706 || Change || Out of date branding on the Home Page footer line. || Regnology branding now displayed in the footer.&lt;br /&gt;
|-&lt;br /&gt;
| RFS-79 || New Feature|| Web Services Data || New fields in Web Services Data page to allow the user to specify the period. [https://wiki.sdmxcloud.org/Web_Services_-_GUI_-_Data More information here]&lt;br /&gt;
|-&lt;br /&gt;
| RFS-844 ||Enhancement|| Introduction of Multiple Measures || [https://wiki.sdmxcloud.org/Support_for_Multiple_Measures Support for data, Phase A]&lt;br /&gt;
|-&lt;br /&gt;
| RFS907 || Enhancement|| New Feature|| Loading Structures. This option is now available on every page.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.2.0.00 RFS 30.01.25.pdf |Release Notes]]&lt;br /&gt;
&lt;br /&gt;
== R1.1.0.00_RFS_05.07.24 (Released 15.07.2024) ==&lt;br /&gt;
&lt;br /&gt;
This release was delivered by Regnology and the Version numbering has changed along with the ticket numbering system (RFS) used to display changes below. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RFS-ReleaseNotes-R1.1.0.00 RFS 05.07.24 1 .pdf]]&lt;br /&gt;
&lt;br /&gt;
== Changes ==&lt;br /&gt;
RFS-493 - Tableau Connector. [[Tableau_Connector | New connector released.]] This has resulted in behavioural changes for the Observational Value [[Tableau_Connector#Observation_Value | - more information available here.]]&lt;br /&gt;
&lt;br /&gt;
== Bug Fixes: ==&lt;br /&gt;
&lt;br /&gt;
RFS-580 - Web Services Query ] Problem  with &amp;quot;completecube&amp;quot; parameter when using the Data Query  Web Service when multiple values are provided. &amp;lt;br&amp;gt;&lt;br /&gt;
RFS-514 - Problem with Publication tables when series queries with wild cards  present.&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-436 - Web Services -Data - System unable to process large volumes of data when Excel Export selected resulting in a need to re-boot. This has been resolved by implemented the Series and Observation limit in the Admin -Server  Settings -  XLSX format. &amp;lt;br&amp;gt;&lt;br /&gt;
RFS-433 - Registry Managed Database - Temporary Table unavailable causing data load failure.&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-287 - Download Structures -  Warning message when trying to download non SDMX  structures in SDMX format missing. Message implemented - JSON format should be used.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.13.0 (Released: 2024/02/08)==&lt;br /&gt;
Based on FMR 11.14.1&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-22: Creating &amp;quot;flat CSV&amp;quot; no longer includes unecessary Sibling Group entries at the start of the file&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-181: Support for SDMX-ML v3.0 Data&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-39: Update vulnerable third-party dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-163: Data Web Service contains duplicate entry for &amp;quot;Excel&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-164: Data Web Service contains unstyled text label&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-76:  &amp;quot;lastUpdated&amp;quot; parameter not working correctly on Data Query for external databases&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.3 (Released: 2023/11/24)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-217: Concurrent modification exception in cache&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.2 (Released: 2023/11/22)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-216: REST query which results in no data now returns a 404 with an SDMX error message, was previously an empty dataset&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-215: Publication Tables: 'includePeriod' REST query parameter returns no data when multiple Dataflows are used and 1 has no data&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.1 (Released: 2023/11/21)==&lt;br /&gt;
Based on  FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-211: Improvements to the &amp;quot;Test Mapping&amp;quot; feature&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-214: Registry can consume all connections to an External Data Store&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.12.0 (Released: 2023/11/20)==&lt;br /&gt;
Based on FMR 11.13.0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-210: Publication Table: Calculation expression to support default value when no Observation found&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-213: Publication Tables: Calculation expression to support default value if no reported value found&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-212: Publication Table: Formatting issue using partial keys - returns 400 exception&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.11.0 (Released: 2023/11/03)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-206: Create aggregate series using linked Hierarchy&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-207: Data Query detail parameter; added 'raw' as a new value to support export of data with no calcualted values via hierarchical aggregations&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-208: In a Generated Reporting Template permit format modification on Observation Cells&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-209: Publication Table: Issue applying formatting rules across multiple Dataflows&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.10.1 (Released: 2023/09/15)==&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-205: saveas=[filename].zip from v1 SDMX web service results in a corrupt zip&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.10.0 (Released: 2023/09/11)==&lt;br /&gt;
Based on  FMR 11.10.1&lt;br /&gt;
&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-195: Publication Tables: Allow dependant variables to be overridden from the API&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-197: Default response formats in v2 web service are now configurable&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-203: Kafa: new topic to publish structure transaction events to&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-204: Kafa: new topic to publish reference metadata events to&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-202: Structure Format response is no longer auto detected if not explicitly set (takes value from default setting)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-198: Querying for data by observation attributes&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-199: saveas=zip is not working on v2 API&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-200: Publication table: Formatting cells ignores UNIT_MULT when it is reported as a dataset level attribute&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-201: Publication table: Conditional Formatting being applied when condition references a Component which is not present in DSD&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.6 (Released: 2023/08/25)==&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-163: Validator: &amp;quot;Missing Attributes&amp;quot; renamed to &amp;quot;Missing Components&amp;quot; and reports on missing Measures&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-164: Add &amp;quot;Output Required&amp;quot; UI control to Structure Mapping&amp;lt;br&amp;gt;&lt;br /&gt;
FR110188: Adding a observation formatting rule treats comma separeted component ids as an AND operator (was OR)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-146: Update Apache POI to version 5&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-147: Update Commons-fileupload third-party dependency&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-148: Update Spring dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-149: Update Jettison third-party dependency&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-150: Web Service to refresh caches&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-158: Merging a Codelist should merge Locale information&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-160: Update Spring and Jackson Dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-161: Implment caching on publication tables&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-167: Improve Mapping functionality so that it can perform Validation&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-171: Portal File system sweep - allow files to be placed in root of sweep directory&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-173: Update Kryo to version 5.5.0&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-174: Publication Tables - not formatting numbers with scientific notation&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-175: Components with Time based Mappings cannot be edited in the Structure Map Wizard&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-176: Support Custom Plugins&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-190: Add SDMX-JSON v2 to the UI&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-191: Restore Fusion Security as an authentication mechanism&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-192: FMR#481: Duplicated group IDs for schema queries in SDMX-JSON&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-193: Mapped Datasets Configuration - new option &amp;quot;Output Required&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-151: Item Validity not returning most recent entry prior to today's date&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-152: Subscript out of range error with FusionXL when carriage return is in the name of a structure&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-153: No transactions returned on SDMX Transactions page when using date slider&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-155: Publicaiton Table Editor: Dependent Variables, remove variable button does not work&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-156: Publication Table availabililty algorithm modified to better calculate default values when using multiple dataflows&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-157: FusionXL resolve carriage returns in concept names&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-159: Cross references not updated correctly when structure already exists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-162: Update Vulnerable Dependencies for FMR 11.7.0&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-165: Validating Generic Data can result in IllegalElement error&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-166: FMR#418 - Conversion and mapping services fail to read SDMX CSV 2.0 format files with BOM&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-168: CSV-TS data format outputting names as labels does not output labels in last Dimension/Attribute column&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-169: RegEx Capture Groups for Representation Map only support 0-9 (\10 and above does not work)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.5 (Released: 2023/03/08)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-140: Modification of interpration of SDMX-CSV V2 row https://github.com/bis-med-it/fmr/issues/349&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-145: Fusion Excel Export Data API now takes an additional 'attachment' parameter&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-137: Removal of dependencies: gson, protobuf, closure, args4j&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-138: Unable to load Structure File when Mapping refers to DSD with ValueList coded dimension https://github.com/bis-med-it/fmr/issues/359&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-141: Caching in reference metadata requests https://github.com/bis-med-it/fmr/issues/356&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-142: Parsing EDI fails to detect malformed period https://github.com/bis-med-it/fmr/issues/362&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-143: EDI REL segment must be followed by ARR segment https://github.com/bis-med-it/fmr/issues/322&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-144: Publication Table - Calculations which contain missing values should not output a value&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.4 (Released: 2023/02/17)==&lt;br /&gt;
'''Bug Fixes'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-135: Publication Table - calculated values could come back as enginnering string when standard form is requested&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-136: Regression mapped data store was not mapping rows with null attribute values&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.3 (Released: 2023/02/16)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-129: Temporary &amp;quot;MV&amp;quot; files not being cleared up after data transformation https://github.com/bis-med-it/fmr/issues/346 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-131: Improve Performance of large Codelists which have Item Validity https://github.com/bis-med-it/fmr/issues/353 &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-133: Improve linking to external datasource by auto detecting foreign key &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.2 (Released: 2023/02/13)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-132: Supported 'latest' in v2 query to prevent errors in connected tools&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.1 (Released: 2023/02/10)==&lt;br /&gt;
'''Bug Fix:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-128: Security rule on OBS Attribute blocks observation when value is null&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.9.0 (Released: 2023/02/03)==&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-117: Provide option to skip Validation phase in Transform Web Service https://github.com/bis-med-it/fmr/issues/237&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-120: Publication Table - apply number formatting to calculated cells&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-121: Publication Table - Apply number scaling before calculations&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-118: Use the public fastUtil library https://github.com/bis-med-it/fmr/issues/338&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-116: Timezone issue with REST API resulting in no data&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-119: Codelists with Annotations not being correctly parsed in SDMX-JSON  https://github.com/bis-med-it/fmr/issues/345&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-123: EDI should prevent Quadruplet attributes in Footnote Section https://github.com/bis-med-it/fmr/issues/347&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-124: EDI file missing mandatory Period Information validates successfully  https://github.com/bis-med-it/fmr/issues/348&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-125: Improve validation of EDI DTM segment https://github.com/bis-med-it/fmr/issues/351&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-126: Publication Table - decimal places (fixed) truncated trailing zero places when locale was also set&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-127: Duplicate elements in SDMX CSV result in unexpected output    https://github.com/bis-med-it/fmr/issues/342 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.2 (Released: 2023/01/17)==&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-108: Prevent contradictory excel mappings (generted from Fame Metadata Manager) worksheets being uploaded to Registry&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-109: Flag contradictory excel mappings (generted from Fame Metadata Manager) in generated worksheet  &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-134: Improve Metrics Report with IncUnmappedReport option &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-111: Change ID Generation of Representation Map from FusionFameMapper xlsx files.&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-115: Ensure Implicit Mappings in Structure Maps validate codelists for valid intersection &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-107: Parent codes should be included in reference partial&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-110: Complete Cube web service feature outputs empty measure values (not 0 values)&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-112: Data export formats excel-ts and excel-series can miss observations in output series if series contains observations with no measure values and no attribute values&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-113: Fix 'too much recursion' error with reverse engineer data structure with large number of Dimensions&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-114: Validate submission of Structure Map's Implicit mappings to ensure Coded mappings have a valid intersection from source to target &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.1 (Released: 2023/01/11)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-101: Unable to import Codelists with multiple levels of inheritence in same submission as structures that use inherited codes&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-102: Bulk actions - detail=raw is ignored&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-103: REST query: detail=raw is not applied to referenced codelists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-104: IncValid output may contain empty series when it should not be generated&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-105: Annotations are ignored when importing 2.1 XML Hierarchical Codelists&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-106: format=csv-series null pointer&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.8.0 (Released: 2022/12/21)==&lt;br /&gt;
'''Important Note for MySQL users:''' due to changes in the distribution of the MySQL connector (change FR11-94 below), please read [[Install_MySQL#Installing_MySQL_5.7|this article]].&lt;br /&gt;
&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-98: Publication Table - support a scaling function applied to numerical observations&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-93: Improve Performance of Viewing a Hierarchy https://wiki.sdmxcloud.org/Publication_Table#Formatting_Numerical_Observation_Values&lt;br /&gt;
&lt;br /&gt;
'''Changes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-91: Validation and Transformation should preserve original format unless output format specified &amp;lt;br&amp;gt;&lt;br /&gt;
https://wiki.sdmxcloud.org/Data_Validation_Web_Service#HTTP_Headers  see Accept Header&amp;lt;br&amp;gt;&lt;br /&gt;
https://wiki.sdmxcloud.org/Data_Transformation_Web_Service#HTTP_Headers  see Accept Header&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-94: Remove MySQL Connector https://wiki.sdmxcloud.org/Install_MySQL#Installing_MySQL_5.7&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-89: Support dataset attribute consolidation (detection of duplicates)&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-90: Observation deletions are no longer written in EDI format&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-92: NPE when publishing EDI data from Command Line&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-95: Publication Table - UI changes table definition (looses column) when clicking preview table &amp;lt;br&amp;gt;&lt;br /&gt;
FR11-96: Publication Table - Preview table error when table heading Rowspan &amp;gt; 1&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-97: Publication Table - bug fix on formatting obs which removed values from output table&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-99: Publication Table - Scientific Notation shows NaN in UI and is not applied to observation values&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-100: Refreshable workbook - issue security challenge when connecting to private server&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-207: Transforming Data with &amp;quot;Delete&amp;quot; action can leave erroneous output in EDI format&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-217: Publication Tables: Numerical Observation, &amp;quot;Add Rule&amp;quot; button does not work&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-224: Failure to report unmapped data when using TIME_PERIOD mapping&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.2 (Released: 2022/11/22)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-84 - In SDMX CSV, SERIES_KEY and OBS_KEY will output with the quote marks around the whole key&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-80 - Validation on Group ID should ignore case&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-82 - Size of column in Portal Table not large enough to contain Data Source ID&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-85 - When loading via Registry UI, Data file with Duplicate Series results in MV Store Error&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-86 - Viewing a Representation Map has issue with &amp;quot;valid from&amp;quot; on Mappings&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.1 (Released: 2022/11/15)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-83 - Support Categorise Publication Table via the UI&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.7.0 (Released: 2022/11/11)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-78 - Publication Table Support Numerical Observation formatting&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-79 - Fix an issue when &amp;quot;edi.datagroup.identifier&amp;quot; specified with value of asterisk&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-80 - Validation on Group ID should ignore case&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-81 - Data Portal - ESTAT Connector fix&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.6.0 (Released: 2022/11/31)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-76 - [[Audit_Web_Services#Search_Structure_Queries|Audit Structure Queries]]&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-77 - [[Audit_Web_Services#Search_Data_Queries|Audit Data Queries]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-75 - Support for extended UTF-8 characters https://github.com/MEDIT-Org/fmr/issues/297 &amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-65 - Update FontAwesome to use Version 6&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-71 - Corrected issue with Dynamic Attributes&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-72 - Version Drop-Down not Displayed when Selected Item on Page Load&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-74 - Security Group Web Service does not output UTF-8 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-65 - Update Web Services &amp;quot;structure&amp;quot; page so the plus symbol is used for &amp;quot;latest&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.2 (Released: 2022/10/14)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-194 - Publication Table - support casting dates more then once in same expression&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-202 - Update dependencies: Hibernate, Spring-Kafka, Jettison and Jersey https://github.com/MEDIT-Org/fmr/issues/294&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-66 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Web Service -&amp;gt; Structures page&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-67 - &amp;quot;Metadata Provider Wizard&amp;quot; does not allow Providers to start with a numeric yet the SDMX Standard allows this&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-68 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Cross References page&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-69 - Attaching Reference Metadata to Items in an item scheme fails to add link (cache issue)&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-189 - Behaviour of web service resolving multiple Codelist inheritance with &amp;quot;details=raw&amp;quot; https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-196 - Unable to read Excel Spreadsheet where all Frequencies are Formulas&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-197 - Request for Codelist in SDMX-JSON, &amp;quot;details=raw&amp;quot;, references=&amp;quot;children&amp;quot; doesn't return children as raw https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-198 - Request for Codelist in SDMX-JSON, &amp;quot;details=raw&amp;quot;, references=&amp;quot;descendants&amp;quot; doesn't return descendants https://github.com/MEDIT-Org/fmr/issues/257&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-199 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Web Service -&amp;gt; Structures page &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-200 - &amp;quot;Metadata Provider Wizard&amp;quot; does not allow Providers to start with a numeric yet the SDMX Standard allows this&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-201 - &amp;quot;Metadata Provider Scheme&amp;quot; not listed on Cross References page &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-203 - Attaching Reference Metadata to Items in an item scheme fails to add link (cache issue) &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-205 - Version Number not Displayed when Selected Item on Page Load&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.1.1 (Released: 2022/10/10)==&lt;br /&gt;
'''Change:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-73 - Modify SQL to ensure GMT Timezone is used&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.1 (Released: 2022/10/05)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-60 - Publication Table - support casting dates more then once in same expression&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-61 - orderMeasure web service parameter to sort observations by date asc/desc&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.5.0 (Released: 2022/09/28)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-187/FR11-53 - Support recovery of structure transactions from backup on installation [[Backup_and_Restore|FMRCL]] https://github.com/MEDIT-Org/fmr/issues/277  &amp;lt;br&amp;gt; &lt;br /&gt;
FR11-52 - Support variable number of max arguments to a SQL IN statement&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-58 - Support import of datafile containing mulitple datasets&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvements:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-183 - Update dependencies https://github.com/MEDIT-Org/fmr/issues/277&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-48 - Update third-party dependencies: apache-jstl, commons-dcp2, joda-time, spring, tika-core&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-45 - Add Version Number to Provision Agreement Selector in Data Source Manager Modal&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-181/FR11-46 - SDMX CSV v 2.0 Data Format does not report its format https://github.com/MEDIT-Org/fmr/issues/110&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-184/FR11-49 - Support '*' for structure type in REST API https://github.com/MEDIT-Org/fmr/issues/273&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-185/FR11-51 - Failure on Compare Revision shows Stack Trace https://github.com/MEDIT-Org/fmr/issues/278&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-186/FR11-55 - SDMX-JSON Writer not outputting DSD as stub https://github.com/MEDIT-Org/fmr/issues/274&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-50 - FameMapper code is creating Excel files in temporary storage which are not deleted&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-54 - EDI data not fully consolidated when publishing data via web service&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.3 (Released: 2022/09/13)==&lt;br /&gt;
'''New Features:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-174 - Publication Tables: Formatting of Missing Values support ObsValue=NaN https://github.com/MEDIT-Org/fmr/issues/253&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-175 - Support Reading of Reference Metadata  (with restrictions) in version 2.1 SDMX   https://github.com/MEDIT-Org/fmr/issues/250&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-182 - Modify ID generation strategy for importing Reference Metadata at v2.1&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-39 - OBS_PRE_BREAK validation corrected&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-43 - SDMX DSD output may include invalid attribute &amp;quot;isMultiLingual&amp;quot;&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-44 - SQL Server does not delete temporary tables&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-169 - SDMX CSV v1 Data Reader does not allow header fields (row 1) to be double quoted &amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-170 - Bulk Export - spelling mistake on Raw help text&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-171 - Order of revisions not as expected&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-176 - OBS_PRE_BREAK validation corrected&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-178 - Quadruplet in EDI vs the other formats in the context of data consolidation or integration https://github.com/MEDIT-Org/fmr/issues/118&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-179 - SDMX DSD output may include invalid attribute &amp;quot;isMultiLingual&amp;quot; https://github.com/MEDIT-Org/fmr/issues/255&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.2 (Released: 2022/08/19)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-30 - Fusion Security Manager will not accept AD group names longer than 30 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-34 - Updated third-party dependencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.1 (Released: 2022/08/10)==&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-21 - Issue loading data into SQL Server in Registry managed table &lt;br /&gt;
FR11-26 - Bulk Export - spelling mistake on Raw help text&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-27 - Order of revisions not as expected&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-28 - JNDI Registry Managed Database - unable to load data&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-25 - SDMX CSV v1 Data Reader does not allow header fields (row 1) to be double quoted&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.4.0 (Released: 2022/07/22)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-18 - Support Reference Metadata https://wiki.sdmxcloud.org/Reference_Metadata&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-146 - Dependency updates&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-159 - Add &amp;quot;Raw&amp;quot; option to Download structures and remove &amp;quot;Include internal settings&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-160 - Allow a Concept Representation to be a ValueList&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-14 - Issue loading Data Constraint with a Component element under Cube Region element&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-17 - Attribute variable does not work in table heading&amp;lt;br&amp;gt;&lt;br /&gt;
FR11-19 - Increase max size of security group ID from 30 to 100 characters&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-162 - SERIES_KEY column should be reserved for series keys&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-161 - Issue loading Data Constraint with a Component element under Cube Region element&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-163 - Attribute variable does not work in table heading&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-166 - Duplicate attribute is not detected anymore in FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-167 - Publication Table - Array Variables fail to save&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-168 - Error encountered whist attempting to deserialize structure&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.3.0 (Released: 2022/07/06)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt; &lt;br /&gt;
FR11-10/FMR11-153 - [[Synchronise_structural_metadata_between_environments|Environment Synchronisation - compare the structural metadata content with that from another Registry, push or pull changes]]&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-158 - [[Publication_Table#Footnotes|Publication Table: Footnotes support]]&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-152 - Comma not being processed correctly in Web Service query for ItemBeans&amp;lt;br&amp;gt; &lt;br /&gt;
FMR11-154 - Unexpected structure validation error from FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-155 - Structure validation errors are not detected anymore in FMR&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-156 - v2 structure REST API does not support queries for multiple items using the comma syntax&amp;lt;br&amp;gt;&lt;br /&gt;
FMR11-157 - Typo in header of Representation Maps page&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.2.0 (Released: 2022/06/27)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-150] Specify the validation and transformation behaviour when duplicate observations are found - [[Data_Transformation_Web_Service#HTTP_Headers|https://wiki.sdmxcloud.org/Data_Transformation_Web_Service#HTTP_Headers]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-3] Schema Query in structure format does not work&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-4] Fusion Cache ignoring parameters like normalise freq on V1 data queries&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-5] Data Point Security - allow rule against a series attribute value that does not exist in the dataset restricts all data&amp;lt;br&amp;gt;&lt;br /&gt;
[FR11-8] Comma not being processed correctly in Web Service query for ItemBeans&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-141] Re-opening of Alternate Half year Issue&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-143] TIME_FORMAT not being generated correctly&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-144] Problem with Date data type when reverse engineering a DSD from a CSV dataset&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-145] Problem with Description data type when reverse engineering a DSD from a CSV dataset&amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-147] DSD Wizard step 3 - not allowing Enumerated Representation &amp;lt;br&amp;gt;&lt;br /&gt;
[FMR11-148] Schema Query in Structure Format does not work&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:&amp;lt;br&amp;gt;'''&lt;br /&gt;
[FMR11-140] Revert xsi:type=SiblingType, change the schema to output the Group as Sibling not SiblingType -&lt;br /&gt;
&lt;br /&gt;
==Version 11.1.0 (Released: 2022/06/01)==&lt;br /&gt;
'''New Feature:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[[Publication_Table|Publication Tables]]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5130] [https://wiki.sdmxcloud.org/Publication_Table#Looping_Rows Publication Table - Support Dynamic Rows]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5131] [https://wiki.sdmxcloud.org/Publication_Table#Formatting_Missing_Observations Publication Table - Format rules on cells with no data ]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5132] [https://wiki.sdmxcloud.org/Publication_Table#Dependent_Dimension_Variable Publication Table - Rules to derive a Dimension Value from another Dimenison's value]&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5133] [https://wiki.sdmxcloud.org/Publication_Table#Anchor_Rows Publication Table - Option to output rows with no data ] &amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5134] [https://wiki.sdmxcloud.org/Publication_Table_Web_Services#Materialise_Publication_Table Publication Table - Ouput Materialised Table in Excel ]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement:'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FR-5129] - Support for MySQL 8 and above&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 11.0.0 (Released: 2022/05/22)==&lt;br /&gt;
'''Changes and New Features:'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Change to the SDMX 3.0 information model as Fusion Registry’s internal metadata object model&lt;br /&gt;
* SDMX 3.0 REST API support&lt;br /&gt;
* Backward compatibility for SDMX 2.1 and 2.0 structures and formats&lt;br /&gt;
* Backward compatibility with SDMX 2.1 REST API (REST API v1 specification)&lt;br /&gt;
* Improved data and metadata access control&lt;br /&gt;
* Granular control over admin rights&lt;br /&gt;
* Fusion Portal – scheduled and on demand data and structure loads&lt;br /&gt;
* Refreshable Excel data format&lt;br /&gt;
* JNDI database connection option&lt;br /&gt;
* Publication Tables - publish curated but dynamic user interactive web data tables that show precisely the statistics required even if they come from multiple different data sets&lt;br /&gt;
&lt;br /&gt;
'''Breaking Changes from Fusion Registry 10:'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Change to the operating database schema - upgrading from Fusion Registry 10 to Fusion Registry 11 requires a fresh install and migration of the metadata, data and settings. A change has been made to the operating database schema. The upgrade process must be followed carefully when [https://wiki.sdmxcloud.org/Upgrading_from_FR_V10_to_FR_V11 upgrading to Version 11.]&lt;br /&gt;
* Environment sync function temporarily removed.&lt;br /&gt;
* The Metadata Reports function has been temporarily removed.&lt;br /&gt;
* Fusion Security support deprecated - Active Directory and LDAP are the supported authentication services in Fusion Registry 11.&lt;br /&gt;
* Content Security is no longer supported in Version 11, the functionality has been replaced by [https://wiki.sdmxcloud.org/Main_Page#Fusion_Security_Manager_Topics| Fusion Security Manager]&lt;br /&gt;
* Structure Sets are replaced by Structure and Representation Maps.&lt;br /&gt;
* Hierarchical Codelists are replaced by Hierarchies.&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sdmxcloud.org/index.php?title=Change_Log_Fusion_Data_Browser&amp;diff=8186</id>
		<title>Change Log Fusion Data Browser</title>
		<link rel="alternate" type="text/html" href="https://wiki.sdmxcloud.org/index.php?title=Change_Log_Fusion_Data_Browser&amp;diff=8186"/>
		<updated>2026-01-30T14:56:33Z</updated>

		<summary type="html">&lt;p&gt;Vmurrell: /* H1.3.0.03._RFS_31.01.26 (Released TBA) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Fusion Data Browser]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
== H1.3.0.03._RFS_31.01.26 - Released 30.01.2026 ==&lt;br /&gt;
RFS-2094 - Fix - The dataflow categories set up in Fusion Registry were not reflected in Fusion Data Browser.&lt;br /&gt;
&lt;br /&gt;
== R1.1.2.00_RFS_31.01.25 (Released 31.01.2025) ==&lt;br /&gt;
==Changes==&lt;br /&gt;
RFS-429 - Fix to ensure corrects results of a search are returned irrespective of chosen locale. &amp;lt;br&amp;gt;&lt;br /&gt;
RFS-1024 - Copyright updated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== R1.1.0.00_RFS_05.07.24 (Released 15.07.2024) ==&lt;br /&gt;
&lt;br /&gt;
This release was delivered by Regnology and the Version numbering has changed along with the ticket numbering system (RFS) used to display changes below. This release includes some branding changes to move away from Metadata Technology branding such as the about page.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Enhancement==&lt;br /&gt;
RFS-378 - The basket type data availability query was enhanced to not return dataflows in a deterministic order.&amp;lt;br&amp;gt;&lt;br /&gt;
RFS-377 - Confirmation notification added to advise when series have been added to a series basket.&lt;br /&gt;
&lt;br /&gt;
== Version 2.4.0 (Released: 2023/01/18) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-164] Manage Dataflow modal - Support Max Decimals applied to all data queries for the Dataflow&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-165] Define how Obs with no reported value are displayed in Series List page&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-168] modify siteconfig.json - remove ExportFormats, SeriesList&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-166] remove seriesconfig.json create serieslistconfig.json to include Series List specific properties&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-167] remove chartconfig.json move time series properties to new file tschartconfig.json&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.3.1 (Released: 2022/12/05) ==&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-157] Order filters by Dimension order&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fixes'''&amp;lt;br&amp;gt;	&lt;br /&gt;
[FDB-158] Search result - action buttons missing in search result page (intermittent)&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-159] Series list quick view concepts and values not displaying chosen language&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.3.0 (Released: 2022/11/15) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-155] Allow home page text to be modified&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-156] Encode user input in forms to prevent script injection &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-154] Quick filter - incorrect list can occur when using shared Concepts between Dataflows&lt;br /&gt;
&lt;br /&gt;
== Version 2.2.3 (Released: 2022/09/09) == &lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-153] Search term can be passed in via the URL to load the browser on the search results page&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.2.2 (Released: 2022/07/11) == &lt;br /&gt;
'''Change'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-151] Have login model appear automatically when used against Fusion Registry in private mode&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug Fix'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-152] PDQ with multilingual name - edit only shows name in 1 language&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.2.1 (Released: 2022/06/27) == &lt;br /&gt;
'''Bug Fix'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-149] Did not show login option when used against Fusion Registry in private mode&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.2.0 (Beta) (Released: 2022/06/21) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-145] Added run query button to Manage Predefined Query page&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-146] Delete Predefined Query to remove all categorisations automatically&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Change'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FBD-148] Login no longer forces a full page refresh&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-147] Remove share button from series  basket page&amp;lt;br&amp;gt;&lt;br /&gt;
== Version 2.1.0 (Released: 2022/06/13) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-144] Dynamic Attribute Export Parameter to support show only obs/series/dataset attributes https://wiki.sdmxcloud.org/Data_Export_Configuration#Attribute_Parameters&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-143] PreDefined Query to appear under a Categorised Dataflow in the sidebar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-141] Performance Improvement on initial load (less metadata transferred)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-142] Refresh page does no work in all environments (reqiured for login/change locale)&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-140] NPE when clicking save query if FR has an Agency Scheme with no agencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[FDB-134] Series basket - problems with Save basket box when you try and create a 4th Series Basket&amp;lt;br&amp;gt;&lt;br /&gt;
==Version 2.0.4 (Released: 2022/05/04)==&lt;br /&gt;
'''Bug Fixes'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-139] Null pointer if SiteConfig includes DSD Attributes in the Sidebar configuration&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Version 2.0.3 (Released: 2021/12/22)==&lt;br /&gt;
Compatible with Fusion Edge Server v4.0.0&lt;br /&gt;
&lt;br /&gt;
==Version 2.0.2 (Released: 2021/12/22)==&lt;br /&gt;
'''Bug Fix'''&amp;lt;br&amp;gt;&lt;br /&gt;
Setting date from and date to with calulations could cause a URL syntax error if calcuations set first&amp;lt;br&amp;gt;&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
Time series chart to include horizonal scroll when more then 15 time periods plotted&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 2.0.1 (Released: 2021/12/22) ==&lt;br /&gt;
&lt;br /&gt;
Tooltips on buttons are now multilingual&amp;lt;br&amp;gt;&lt;br /&gt;
Removed unrequired query parameters from export URL&lt;br /&gt;
&lt;br /&gt;
== Version 1.5.3 (Released: 2020/10/27) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-115] - Add configuration option to 'opt in' to include 'show all datasets' option in sidebar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-116] - Remove export formats from sparkline as they do not align to databrowser configured formats&lt;br /&gt;
&lt;br /&gt;
== Version 1.5.2 (Released: 2020/10/19) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-113] - Add start of period and end of period options for Frequency converstion&amp;lt;br&amp;gt;&lt;br /&gt;
'''Change'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-114] - Only show categories in sidebar, not category scheme&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 1.5.1 (Released: 2020/10/05) ==&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-107] - Add tooltips titles to series list title/subtitle/footer text&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-108] - Order Dimension Quick Filters by DSD Order&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-110] - Order Caategorised Dataflows in sidebar by Id&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-111] - Move Pivot table controls from sidebar to modal&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bug'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-112] - Metadata labels are not updating language on locale switch&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 1.5.0 (Released: 2020/09/18) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-102] - Data Export: Support Explicit inclusion/exclusion of specific attributes via configuration&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-105] - Release Fusion Embedded Server - required to display embedded charts&amp;lt;br&amp;gt;&lt;br /&gt;
'''Improvement'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-46] - Convert time series to different frequencies&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-47] - On-the-fly time series calculations&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-104] - Show cleaner error page when web service can not be contacted on page load&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-106] - Series List - Show number of selected series&amp;lt;br&amp;gt;&lt;br /&gt;
'''Bug'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-75] - Advanced filter does not match search result&amp;lt;br&amp;gt;&lt;br /&gt;
'''NOTE''': New Properties added to locale files&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version 1.5.0 (Released: 2020/09/18) ==&lt;br /&gt;
'''New Feature'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-35] - XLSX Export - export series with different frequencies into separate sheets&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-36] - XLSX Tables Export - group series with common frequencies&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Bug'''&amp;lt;br&amp;gt;&lt;br /&gt;
[FDB-76] - Search results can return Attribute matches which result in uncaught exceptions when selected&lt;/div&gt;</summary>
		<author><name>Vmurrell</name></author>
		
	</entry>
</feed>