Hi All,
I have this quick report that works, the users have asked if it could be in a lobby - it is using three tables to get the information, how can I do this in a lobby data source or is this not possible?
SELECT
i.part_no,
i.location_no,
i.lot_batch_no,
i.qty_onhand,
i.receipt_date,
p.max_quantity_capacity,
h.handling_unit_id,
h.handling_unit_type_id
FROM inventory_part_in_stock_uiv i,
part_handling_unit p,
handling_unit_extended h
WHERE i.contract = 'CAS'
AND i.part_no = p.part_no
AND h.handling_unit_type_id = p.handling_unit_type_id
AND h.handling_unit_id = i.handling_unit_id
AND i.qty_onhand <> 0
AND i.qty_onhand <> p.max_quantity_capacity
AND i.receipt_date >= sysdate -3
Thanks as always for your help, Sarah









