for a symbol, you may need to separate out each bit individually and input it into the gate. You can do this by named association
Forget about AHDL (its a dead language)
in VHDL, you can simply use one of the two methods:
library ieee;
use ieee.std_logic_1164.all; --library used everywhere
use ieee.std_logic_misc.all; --has some useful reduction operations
......
signal a : std_logic_vector(7 downto 0);
signal b : std_logic;
...
b <= or_reduce(a); --also, and, nand, nor, xor, xnor reduce functions
or when Altera finally add some decent VHDL 2008 support:
b <= or a;