Phillip Rhodes wrote:

In the catalog admin, is there anyway to do a blind search and obtain a list of 
all products in the system?

I am not seeing it, and I am having to remember every product id, or assign it 
to a category.

WebTools is a better tool for that perhaps
https://localhost:8443/webtools/control/EntitySQLProcessor

    select * from Product

Or if you are looking for items not in a category
    select * from Product where primary_product_category_id is null;

--
Walter

Reply via email to