FintechOS Platform 24.3.2.2
July 2nd, 2025
This release brings styling for document templates and addresses several issues to improve the reliability and functionality of the API, SDKs, and form-driven flows.
What's New
Apply Styling to Document Template Tables
You can now use HTML styling tags (<b>, <i>, etc.) in the SQL procedure of a document template to format the text in the output table. E.g.:
Copy
CREATE PROCEDURE [dbo].[uspTest]
@Id uniqueidentifier
AS
BEGIN
-- The first result set should return a single row
SELECT 1 AS 'abc'
SELECT 'table1' AS 'table' -- Table name
-- Data set for table1
SELECT name AS column1,
createdOn AS column2
FROM ebs.TestTable1
SELECT 'table2' AS 'table' -- Table name
-- Data set for table2
SELECT ContractName AS col1,
CreatedDate AS col2,
'This is the <b>description</b> of the <i>Contract</i>.' AS col4
FROM Ebs.Contract
END
Rendered output (example):
| HEADER col 1 | Header col 2 | Header col3 | Header col4 |
| Test1 | TestCol2 | Static text | This is the description of the Contract. |
| Test2 | Test2Col2 | Static text | This is the description of the Contract. |
|
|
|
|
|
| Table1 Info | |||
|
Table1 Info 2 |
|||
|
Table1 Info 3 |
|||
For more information, see the Automation Blocks User Guide.
Fixed Issues
| No. | Summary |
|---|---|
| 78783, 79132 | Form-driven flows in wizard mode occasionally opened in a new browser tab rather than the current tab. |
| 78992 | Certain OpenAPI endpoints included invalid characters, causing Web API Client Library imports to fail. |
| 79216 | The ftos.context.response.setDownload method did not work as expected. |
| 79425 | The formData.view.model.{attribute name}.visible Client SDK property did not hide the attribute fields when set to false. |