Export to excel for large data set which is to be retrieved from 2 data entities

I have a need to use export to excel functionality feature for a report where data is supposed to retrieved from multiple(2) cdt.

Also, the dataset is extremely large.

What approach should i go for?

  Discussion posts and replies are publicly visible

Parents
  • Create a view having proper mapping of both tables. Please have a look at JOINS in SQL and make proper view. You can map CDT with already existing View (we can do this with table as well).

    Once you map CDT with view you are ready to fetch data. Before exporting, if needed you can write query entity to get data filtered.

    Use process model and call smart service EXPORT CDT TO EXCEL.
Reply
  • Create a view having proper mapping of both tables. Please have a look at JOINS in SQL and make proper view. You can map CDT with already existing View (we can do this with table as well).

    Once you map CDT with view you are ready to fetch data. Before exporting, if needed you can write query entity to get data filtered.

    Use process model and call smart service EXPORT CDT TO EXCEL.
Children