Admin Product View Page Error On Sort Or Filter After Migration M1 to M2
I had a problem after migration, to sort the product filter in the admin panel page but I am receiving the error.
Posted: July 22, 2020
I had a problem after migration, to sort the product filter in the admin panel page but I am receiving the error:
Something went wrong with processing the default view and we have restored the filter to its original state.
Solution:
SKU should be empty or string. In this case, it is null or not a string.
Run the following query will resolve your issue if it is a null SKU related error:
UPDATE catalog_product_entity SET sku='' WHERE sku IS NULL;
You can check your corrupted SKU and fix that.
0 Comment(s)