First check calculate_step_quantity is null or not.
select * from gmd_recipes_b
where calculate_step_quantity is null
Sometimes, When uploaded Recipe using API, it will happen,
Solution is to update by bellow Script :
update gmd_recipes_b
set calculate_step_quantity = 0 -- or = 1
where calculate_step_quantity is null
Here 0 is if no automatic_step_calculation needed & 1 is if automatic_step_calculation
No comments:
Post a Comment