You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to iDempiere
Hi all,
how do I generate a report that will print out the amount of barcodes for the amount of items in stock for each product?
Regards,
Alejandro
Anozi Mada
unread,
Oct 13, 2015, 10:29:05 PM10/13/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to iDempiere
Hi Alejandro
You can try something like this
SELECT p.UPC, s.QtyOnHand, generate_series(1,s.QtyOnHand::int) FROM M_StorageOnHand s INNER JOIN M_Product p ON (p.M_Product_ID = s.M_Product_ID) WHERE s.QtyOnHand>0 AND p.UPC IS NOT NULL
Regards, Anozi Mada
redhuan d. oon
unread,
Oct 13, 2015, 11:32:45 PM10/13/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message