Given I have the following view where N=1..100
detail_view_N
Pant Quantity Fieldx ...
A 20
A 13
B 4
Currently we have summary views which insert to a table like
summary_view_N
Report_Name Plant Count
summary_view_1 A 2
summary_view_1 B 1
The table is then used to create an overall summary like
summary_view_all_plants
Report_Name Plant Count
summary_view_1 A 2
summary_view_1 B 1
...
summary_view_N X Y
Is there a way to create summary_view_all_plants without having to create each individual summary_view_N? I would like to be able to itterate though a list of reports and dynamically generate the insert views.