You are on page 1of 1

--Nieuwe items

select count (item)/4 from item_master


where create_datetime between '01-AUG-2010' and '31-AUG-2010'
and item_level = 1;
--Update items
select count (item)/4 from item_master
where last_update_datetime between '01-AUG-2010' and '31-AUG-2010'
and item_level = 1;
--Cost Updates
select count (COST_CHANGE)/4 from COST_SUSP_SUP_HEAD
where create_date between '01-OCT-2010' and '31-OCT-2010';
--Suppliers
select * from SUPS where supplier_parent is null;
select * from addr where MODULE = 'SUPP' and ADDR_TYPE = 01;

You might also like