YesWill each Order only be one line? Is tblPOfolio the Orders? Will the Orders only have one line?
there is no such thing as reserved.For the reserve, I would use an Order with a future ship date.
I'm not seeing how that query is going to give you quantity-on-hand. Is that the problem?have done with below query
SELECT tblProducts.*, tblVendor.VendorName, tblFolio.*, tblFolioType.*, IIf([tblFolioType]![TypeofFolio]="Purchase",[tblFolio]![Qty],-[tblFolio]![Qty]) AS ActualQty
FROM tblVendor INNER JOIN (tblProducts INNER JOIN (tblFolioType INNER JOIN tblFolio ON tblFolioType.FolioID = tblFolio.TypeofFolio) ON tblProducts.ProductsID = tblFolio.Product) ON tblVendor.VendorID = tblProducts.V
have created in ReportI'm not seeing how that query is going to give you quantity-on-hand. Is that the problem?
Not with that tables you have. That is what everyone has been trying to explain. You can't put a 3,000 sq. ft. house on a 2,000 sq. ft. foundation.have created in Report
can you tell me how can i get the sum of the same products row selected from Sub Form on main form
View attachment 96887
Not with that tables you have. That is what everyone has been trying to explain. You can't put a 3,000 sq. ft. house on a 2,000 sq. ft. foundation.
seems reserved means booked, so as u suggested it should go to sales order, not sales, but the question is how is the reserved treated in storethere is no such thing as reserved.
either there is a Sale or a Sale Order (this is the reserved. need to be delivered or to be picked-up?)
it will be same like sale, but the invoice details will added later onlyseems reserved means booked, so as u suggested it should go to sales order, not sales, but the question is how is the reserved treated in store
1. Does it reduce the quantity in store?
2. The booked quantities must have a grace period for the buyer to pick up or make payment to confirm booking
In post #14 @arnelgp posted a sample you could build on. In post #20 I posted an example you could build on. You can also have a look at...than can you suggest, how can i complete this
You have to re-draw the flow of the inventory processthan can you suggest, how can i complete this
in the sample there is only one table for all transactions like Purchase (+), Sale & Reserve (-)You have to re-draw the flow of the inventory process
Make sure tables exists for each of the processes
Make sure relationships exists between tables that have overlap functions with each other.
Also look at the samples posted by other users on this thread.