Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
I am using a read-only grid to show data for reports. I need to export the data to excel but the grid has more than 50 columns. I have already tried default export to excel feature and a!exportDataStoreEntityToExcel() function but none of these worked. FYI:
Is there any way I can export the data to excel?
Discussion posts and replies are publicly visible
Hi Yashika,
1. The is'nt supported by OOTB plugin.
2. you can try the option provide by shubham below, with webapi, but make sure its less data, else this will crash the app server if the data is too huge, which caused more heap memory usage.
Hello karthikkanjerla ,We are using this export since last 2 years which almost export ~9K rows as a single export. We didn't find any high heap usage and performance issues.
ok, 9k is very less, once user tried exporting 150k records with issue in filter, this crashed the app server, so we deommisioned using this approach. it dint cause any problem for less than 30 k records.
@yashika , just check the heap usage while exporting more records and set the threshold according to the best which suites you.
community.appian.com/.../kb-2288-application-server-heap-memory-faq
Hi Karthik. Could you tell me what was the alternate approach implemented after decommissioning?