Overview
Provides the following custom smart services and functions for handling data in Excel.
Key Features & Functionality
Smart Services included are:
Functions included are:
Hi,
Thanks for confirming - as far as I remember, I'd tried it both ways (i figured dictionary syntax wouldn't work but also didn't produce specific errors).
Also as a side note, Community doesn't seem to send any sort of notification of a reply here even though you had replied directly to me (this seems to hold true for any sort of comment activity within the App Market space).
Hi April. When I execute the excel import task in my work flow, it errors out with the above mentioned error. The error hints at the smart service not correctly reading the column names in the first row of the excel. Similar to trying to run this query on a DB: select "" from [table].
Hi johnh0011 - can you please provide some more context for when you're getting this error and what's not working?
Hi Vadivelan - this should work with any supported databases.
Is there an issue with the excel import smart service in 19.4? Was working fine in 18.2. I get the following error: ???ORA-01741: illegal zero-length identifier???
- Added LOAD CSV to DB Smart Service - fast CSV import for MySQL database that are not hosted on Appian Cloud
Sanchita GuptaDoes that mean Load CSV to DB Smart Service will work only for databases that are not hosted on Appian Cloud?
So the first issue here is the syntax for calling the function. You cannot use keyword syntax when calling a plugin, you must use position syntax: docs.appian.com/.../Expressions.html
An example syntax would be queryAppianLogs("select * from login-audit",null,{"String", "String", "String","String","String","String"},null,false) to fill out the inputs for sqlStatement, subFolder, columnTypes, timestampFormat, and hasHeader respectively.
Testing using this syntax produces more expected results however passing false for hasHeader seems to skip the first row of data in the file so we will look into fixing that. In the meantime, the Log Reader plugin can also pull csv data.