Question
Can data be exported to Excel?
Answer
Excel is only supported for full-text export. It can be enabled in the Process Skill editor > Output activity > Exported Data Settings > Text tab:
For fields, only JSON format is supported.
Can data be exported to Excel?
Excel is only supported for full-text export. It can be enabled in the Process Skill editor > Output activity > Exported Data Settings > Text tab:
For fields, only JSON format is supported.
Have more questions? Submit a request
Comments
4 comments
Veerish Uppin
Can I write in the script to export the data in CSV or JSON file ? If yes, what is the syntax I need follow.
Dmytro Bezus
Hello Veerish,
The export script could be written in the custom activity. You may find the samples in the guide:
EU instance - https://vantage-eu.abbyy.com/help/English/SkillDesigner/?topic=process_custom_samplescripts
AU instance - https://vantage-au.abbyy.com/help/English/SkillDesigner/?topic=process_custom_samplescripts
US instance - https://vantage-us.abbyy.com/help/English/SkillDesigner/?topic=process_custom_samplescripts
For JSON:
Kind regards,
Dmytro
Veerish Uppin
Dmytro Bezus
I have used the below script but when I try to append the file it give me an error saying that extractedDataExportResult is null and it cannot be null.
Command used to append file:
httpRequest.AppendFileContent(extractedDataExportResult,"electronicDocument");
I have also tried
// add extracted data to the export result
multiPartRequest.AppendStringContent(extractedDataExportResult.ToJson(), "jsonData");
Dmytro Bezus
Hello Veerish,
Did you check the "Send export data to an external service" script sample? You could use:
In addition, you could use Context.LogMessage() method for debugging via the transaction log.
Kind regards,
Dmytro
Please sign in to leave a comment.