> (employeeNumber=${customAttribute1})
So what you are saying here is "All the values of customAttribute1" whereas
you want is (I assume) "the first value of customAttribute1".
My Velocity is being very rusty today but something like
(employeeNumber=${customAttribute1.get(0)}) should do it.
/R