Need help on making aggregation on sail code with filter

Hi,

 

I want to perform some group by operation on sail code on required dataset with some filters.

 

Do we have any way to do that on sail code not on expression rules ?

 

Actually i have received bulk data set from one view and i want to use one list of one field value to traverse whole dataset, so just fo that details i don't want to hit database again, for that i want to do group on existing dataset only, so if we have any option for grouping on sail code plz suggest.

 

Regards

Saurav

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to aloks0189
    Ideally I think you would perform aggregation over both, making sure you're not pulling more data than you will need from database the first time, but aggregating that data you did pull locally to prevent your SAIL from performing the same DB read 65,000 times on the same form before the user can submit.

    Granted Appian has recently improved logic to only run DB queries again on with() reevaluation should the pagingInfo have changed.
Children