Vlastně pokud vytvoříte func:
create function p1() returns INTEGER DETERMINISTIC NO SQL return @p1;
a zobrazit:
create view h_parm as
select * from sw_hardware_big where unit_id = p1() ;
Poté můžete zavolat pohled s parametrem:
select s.* from (select @p1:=12 p) parm , h_parm s;
Doufám, že to pomůže.