Down load Excel from a custom view grid

I am showing  few fields from the DSE in a grid and i set a advanced search to filter from the result shown in the grid , now after i set the filter i have to click on the export to excel and it should generate the excel document . the export should have only the fields that i show in the grid and not all the DSE, i have the filtered result to pass , but the function we have support only to export from DSE and not the custom. i tried with PM . but it get stored in Appian folder which does not suffice . can any one suggest how we can export the custom grid with the filtered list as export to excel or csv . Thanks  

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    i tried with PM . but it get stored in Appian folder which does not suffice

    Almost all sufficient solutions will require something like this, though.  It's very easy to handle - simply generate the document in a PM and pass the generated document ID back into your interface, after which you show your user a friendly Document Download link in a Rich Text Display Field.

    I recommend you look into the JSON to Excel plug-in, it's flexible and allows the use of an Excel Base Template (if desired, though it's optional), and the nice thing is you can pass in arbitrary JSON dictionary data with no specialized CDTs or anything else needed at generate time.  This would allow you to, for instance, fashion a custom JSON string in your interface containing the exact columns(s) and row(s) of data you want, in the exact formatting you want, then pass it into a small helper process model to generate the excel, and not need to worry about doing any additional filtering (etc).

Reply
  • 0
    Certified Lead Developer
    i tried with PM . but it get stored in Appian folder which does not suffice

    Almost all sufficient solutions will require something like this, though.  It's very easy to handle - simply generate the document in a PM and pass the generated document ID back into your interface, after which you show your user a friendly Document Download link in a Rich Text Display Field.

    I recommend you look into the JSON to Excel plug-in, it's flexible and allows the use of an Excel Base Template (if desired, though it's optional), and the nice thing is you can pass in arbitrary JSON dictionary data with no specialized CDTs or anything else needed at generate time.  This would allow you to, for instance, fashion a custom JSON string in your interface containing the exact columns(s) and row(s) of data you want, in the exact formatting you want, then pass it into a small helper process model to generate the excel, and not need to worry about doing any additional filtering (etc).

Children