getTabularDataFromFile

(FintechOS Studio 20.1.2 and later)

Imports tabular data from a plain text (.csv) or Excel (.xlsx) file stored in the file upload location.

IMPORTANT!  
The Excel import capability is only available in FintechOS 21.1.2 or later.

Syntax

Copy
function getTabularDataFromFile(filename : string, options : IFtosWorkflowTabularDataOptions): IFtosWorkflowTabularData;
 
Parameter Type Description
filename string Path to the imported file. The file should be stored in a known folder, eg. Import/test1.csv.
options (optional) IFtosWorkflowTabularDataOptions Delimiters, encoding , and other settings of the imported file in JSON format.

Return Value

Returns a IFtosWorkflowTabularData object that stores the data set imported from the file.

Type Aliases

Examples