Results 1 to 2 of 2
  1. #1
    16montana is offline Novice
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1

    Inventory with FIFO and multiple bins

    I am new to the forums so hello all.I have been browsing the forums and Google but I am having little success.I am familiar with Access but by no means an expert.
    We have an Oracle database that our Warehouse system runs from but the system is not very configurable so I thought I would try something in Access.I can access the database in Access to retrieve the Products, Warehouse,Bin ( a row with about 5 pallet spaces), Lot number (date), quantities at the time.We have about 300 products and hundreds of bins and 2 warehouses -consigned and non consigned.We get orders multiple times a day going to a set number of customers.Proposal is a linked spreadsheet that will have the Product ordered, qty needed,shipping location and customer.Now the same product could be ordered by multiple customers and shipped to multiple locations. The problem I am trying to solve is I need to create a 'pick list' for the fork truck driver as quickly as possible.first we need to look at the non consigned warehouse for product by lot for FIFO.I would like to , in Access , Decrement to amount ordered from the bin (1 bin will usually have less than than the amount ordered) and continue to decrement until 0.For example: Product 1273812 is being ordered with a quantity on 1000 from customer "EI/AIM" going to Mexico.

    Warehouse 60 (non consigned) has 200 in a bin.
    1000-200=800
    Now I need to look at warehouse 50 (consigned) and 500 in a bin with a lot date of 06/01/10 and another bin with 800 with a lot number of 06/10/10.
    800-500=300 (fifo)
    300-800=-500 so 300 needed to removed from second bin.
    We are now at 0 so move on to the next item which could be the same item but a different customer and shipping location.To prevent lot issues, we want to only list bins that will fulfill the requests.We could have a product in 10 bins but only need it form 2 bins.I know this is a lot to ask for so I won't hold my breath but I always like learning new tricks.



    Here is the table structure(pics) and queries I have tried to use:

    SELECT SDC_ACTCOST1.PRODUCT_NO, SDC_ACTCOST1.WAREHOUSE_NO, SDC_ACTCOST1.BIN_LOCATION, SDC_ACTCOST1.LOT_NUMBER, SDC_ACTCOST1.QTY_ON_HAND, Pick_List_Update_Query.QTY, Pick_List_Update_Query!QTY-[QTY_ON_HAND] AS Expr1
    FROM ([Pick List] INNER JOIN SDC_ACTCOST1 ON [Pick List].ITEM = SDC_ACTCOST1.PRODUCT_NO) INNER JOIN Pick_List_Update_Query ON [Pick List].ITEM = Pick_List_Update_Query.ITEM
    WHERE (((SDC_ACTCOST1.WAREHOUSE_NO)="50" Or (SDC_ACTCOST1.WAREHOUSE_NO)="60"))


    ORDER BY SDC_ACTCOST1.WAREHOUSE_NO DESC , SDC_ACTCOST1.LOT_NUMBER, SDC_ACTCOST1.QTY_ON_HAND;
    Last edited by 16montana; 08-27-2010 at 10:57 AM. Reason: Adding specific table/query info

  2. #2
    ajetrumpet is offline VIP
    Windows Vista Access 2007
    Join Date
    Mar 2010
    Location
    N/A
    Posts
    2,694
    your explanation is pretty easy to understand, but without tables and a structure of at least somekind you probably won't get any response. This is nearly impossible to imagine without looking at something to help you. Also, you might want to try and give it a go yourself first. Access is OK for inventory flow systems like FIFO and LIFO (even weighted avg. systems), but it's not the best. Believe it or not, I think Excel is better.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Inventory Tracking
    By PUDrummer in forum Access
    Replies: 3
    Last Post: 10-10-2012, 05:42 AM
  2. Inventory control
    By Mclaren in forum Programming
    Replies: 11
    Last Post: 03-13-2012, 03:15 AM
  3. How to store inventory properties?
    By tuna in forum Database Design
    Replies: 1
    Last Post: 08-05-2010, 01:02 AM
  4. Inventory Calculation
    By ser01 in forum Queries
    Replies: 1
    Last Post: 04-24-2010, 12:24 PM
  5. Inventory Database
    By kram941 in forum Access
    Replies: 2
    Last Post: 11-09-2009, 04:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums