Hi,
My previous plan was to build all necessary attribute views first then graphic calculation views,
however I realized that it is quicker to build only one script based calculation view and do a big select within it.
So the sql script in my script based calview would be like the following
var_out = select a.xx,
a.xx,
b.xx,
b.xx,
c.xx,
..
from a join b join c...
where xxx
group by xxxx
And all attributes would be directly be posted the output even there is no attribute views involved.
And the input parameter can directly reference to db table.
So my question is : is it necessary to build attribute views for script based calculation views? If so, any benefits?