Hello to all.
Question: How can you send global variables to views to run manually assigned filters?
simple example:
view_1
select nrmov, datamov, sum (amount) as amount from movc where [where_1]
view_2
select nrmov, datamov, amount from movc where [where_2]
view_in_grid
select nrmov, datamov, amount from view_1 union (select nrmov, datamov, amount from view_2)
Since there are several fields and a series of joins for each view I prefer to run the grid with the views that are more simplified and clear and then also because in grid complex queries are not performed correctly (it seems to me!)
Ciao
Thank you
Enrico