RE: Items not appear in the store
Hi Ahmed,
Most probably you have missing record in the ItemDynamic table, run the following queries in HQ: -
select count(*) from item
select count(*) from store
select count(*) from itemdynamic
the last result should equal 1st result * 2nd result
if they are not matching, then u need to run the following fix
******************
insert into itemdynamic(itemid,StoreID,quantitycommitted,quantity,ReorderPoint,RestockLevel,SnapShotQuantity,SnapShotQuantityCommitted)
select item.id as ItemID, store.id as StoreID,0 as quantitycommitted,0 as quantity,0 as ReorderPoint,0 as RestockLevel,0 as SnapShotQuantity,0 as SnapShotQuantityCommitted
from item cross join store
left join itemdynamic on item.id=itemid and store.id=storeid
where storeid is null
********************
Ahmed Nashat