Do you have a valid itemtype set on all of the bibs in your database?
You can find this out by running SELECT biblio.biblionumber, biblio.title, biblio.author, biblioitems.itemtype from biblio LEFT JOIN biblioitems USING(biblionumber) WHERE itemtype IS NULL OR itemtype = ''
--
Jesse