I sometimes have Really Large PO's from suppliers but they have a habit of dividing the orders into several to ten po's i have found a little trick to help me but not able to execute properly
In the OrderNumber Column (OrderNumberID) in the (POitem) PurchaseOrderEntry i placed * or + on items i would like to quickly move from one po to another
Used a command like Source PONumberID is 10000000 Destination PONumberID is 10000001
INSERT INTO PurchaseOrderEntry PONumberID = '10000001'
Where IN (Select * from PurchasePurchaseEntry
Where OrderNumberID = '+' AND PONumber= '10000000' )
Technically i want to copy or move item to another purchase order by using symbol to mark then
Simply Concept just cant get the code right to execute it
I believe my code is wrong or missing something
*This post is locked for comments