database table in Magento does not exist: sales_flat_shipment_grid

Posted by dene on Stack Overflow See other posts from Stack Overflow or by dene
Published on 2012-08-29T09:09:12Z Indexed on 2012/08/29 9:38 UTC
Read the original article Hit count: 237

Filed under:
|
|

We're using Magento 1.4.0.1 and want to use an extension from a 3rd party developer. The extension does not work, because of a join to the table "sales_flat_shipment_grid":

        $collection = $model->getCollection()->join('sales/shipment_grid', 'increment_id=shipment', array('order_increment_id'=>'order_increment_id', 'shipping_name' =>'shipping_name'), null,'left');

Unfortunately this table does not exist n our database. So the error "Can't retrieve entity config: sales/shipment_grid" appears. If I comment this part out, the extension is working, but I guess, it does not proper work.

Does anybody know something about this table? There are a backend-option for the catalog to use the "flat table" option, but this is only for the catalog. And the tables already exists, no matter which option is checked.

Thank you a lot! :-)

© Stack Overflow or respective owner

Related posts about database

Related posts about magento