Hi Everyone
I'm currently facing an issue while exporting data from a specific table that contains more than 50 columns. I'm using the Export Data Store Entity to Excel plugin, but it throws an error during the export process.
Has anyone encountered a similar issue or found a workaround to export data with more than 50 columns successfully? Any suggestions or guidance would be greatly appreciated.
Thanks in advance!
Discussion posts and replies are publicly visible
Smart service has a known limitation of 50 columns.I have explained my approach in earlier discussion.https://community.appian.com/discussions/f/data/34813/how-to-export-data-to-excel-in-a-grid-with-more-than-50-columnsTry and let me know if that works for you.
Hi Shubham Aware , In the above shared method when creating web api can I use the query entity template and it will be get method . Is that what you are doing there also we want to export all the rows availlable so I am not neccessarily going to pass any input in the body can we skip the parse or why we are using that I don't get it.
Yes you can use a GET Web API and query the data directly. In my example, I parsed the request body only to read an identifier/filter. Since you want to export all rows and are not passing any input, you can skip the body parse and directly query everything, then pass the result to exportDataSubsetToBase64().