Reports

Hi Every One,

Can any one tell me have to display 100000 reports in tempo reports. 

 

Thanks

  Discussion posts and replies are publicly visible

Parents
  • As others have said, for a report this large paging is 100% necessary (although you really should always have paging). However paging/sorting will not be sufficient for that number of records. You will need to build multiple search fields which have their results passed into your query entity, otherwise users will never find the records they care about in such a large report. Do not attempt to use filter expressions or wherecontains to find data, let the database do what it is good at.
Reply
  • As others have said, for a report this large paging is 100% necessary (although you really should always have paging). However paging/sorting will not be sufficient for that number of records. You will need to build multiple search fields which have their results passed into your query entity, otherwise users will never find the records they care about in such a large report. Do not attempt to use filter expressions or wherecontains to find data, let the database do what it is good at.
Children
No Data